From 291b195c7f001c089da00871823e1ba981311d34 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Mon, 20 Nov 2006 02:08:42 +0000 Subject: [PATCH] * src/ViewManager.py: Fix 0000576: Credits window behind about window svn: r7653 --- ChangeLog | 3 +++ src/ViewManager.py | 1 + 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index 64d8604e2..42044bdd5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2006-11-19 Brian Matherly + * src/ViewManager.py: Fix 0000576: Credits window behind about window + 2006-11-18 Brian Matherly * src/plugins/NarrativeWeb.py: Fix 0000543: Multimedia-Objects marked as private are visible in narrative web-report diff --git a/src/ViewManager.py b/src/ViewManager.py index f7e82f772..f80c1eca8 100644 --- a/src/ViewManager.py +++ b/src/ViewManager.py @@ -620,6 +620,7 @@ class ViewManager: about.set_translator_credits(_(const.translators)) about.set_documenters(const.documenters) about.set_logo(gtk.gdk.pixbuf_new_from_file(const.splash)) + about.set_modal(True) about.show() about.run() about.destroy()