From 71c396052576b9ee6cf9b1b7b4c0174bb2c3cfd2 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sat, 5 Jan 2019 19:30:33 -0300 Subject: [PATCH] remove keep above since parent now works --- src/main-window.vala | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main-window.vala b/src/main-window.vala index ddc9492..72c6b7f 100644 --- a/src/main-window.vala +++ b/src/main-window.vala @@ -78,7 +78,6 @@ namespace Sernatur { private void menu_tours(Gtk.MenuItem menu_item) { tour_window = new TourWindow (application); tour_window.set_transient_for (this); // Set this window as the parent of the new window - tour_window.set_keep_above (true); tour_window.present (); }