diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-27 11:38:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-27 11:38:31 -0700 |
commit | 3ca194b34695989f096b9533ea233ee1beec7733 (patch) | |
tree | 901df94c313699b965eab624b8f22425c95fa917 /gtk-gui.c | |
parent | 30ee87be92f0a0fffc98106852d9623a65dfe4ed (diff) | |
download | subsurface-3ca194b34695989f096b9533ea233ee1beec7733.tar.gz |
Don't mark the divelist window transient
That also makes it always stay in front of the other window, which is
just annoying. I only did it because I wanted to make sure it dies when
the main window does, but since we just kill the main loop when closing
either window, that just isn't an issue.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r-- | gtk-gui.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -472,8 +472,6 @@ static GtkNotebook *create_new_notebook_window(GtkNotebook *source, divelist_window = win = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(win), "Dive List"); - gtk_window_set_transient_for(GTK_WINDOW(win), GTK_WINDOW(main_window)); - gtk_window_set_destroy_with_parent(GTK_WINDOW(win), 1); gtk_window_move(GTK_WINDOW(win), x, y); /* Destroying the dive list will kill the application */ |