export SYNFIG_DISABLE_POPUP_WINDOWS=1 to stop the "one moment please" staying on...
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 27 Sep 2007 00:30:16 +0000 (00:30 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 27 Sep 2007 00:30:16 +0000 (00:30 +0000)
git-svn-id: http://svn.voria.com/code@770 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/gtkmm/onemoment.cpp

index f8bf4ec..2b311d0 100644 (file)
@@ -81,9 +81,9 @@ using namespace studio;
 
 /* === M E T H O D S ======================================================= */
 
-OneMoment::OneMoment():        Gtk::Window(Gtk::WINDOW_POPUP)
+OneMoment::OneMoment():
+       Gtk::Window(getenv("SYNFIG_DISABLE_POPUP_WINDOWS") ? Gtk::WINDOW_TOPLEVEL : Gtk::WINDOW_POPUP)
 {
-
        // Create the Copyright Label
        Gtk::Label *label = manage(new class Gtk::Label(_("One Moment, Please...")));