From 03e942b6d286b7a38b543d0ae4a9bafca9fb482b Mon Sep 17 00:00:00 2001 From: Valeriy Kamyshniy Date: Wed, 26 Nov 2014 19:01:10 +0200 Subject: [PATCH] [SUmmary] Little improvement: making the splash screen a POPUP window --- gtk2_ardour/splash.cc | 1 + gtk2_ardour/splash.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/splash.cc b/gtk2_ardour/splash.cc index be34f2dbbd..317764e0db 100644 --- a/gtk2_ardour/splash.cc +++ b/gtk2_ardour/splash.cc @@ -43,6 +43,7 @@ using namespace ARDOUR; Splash* Splash::the_splash = 0; Splash::Splash () +: Gtk::Window (Gtk::WINDOW_POPUP) { assert (the_splash == 0); diff --git a/gtk2_ardour/splash.h b/gtk2_ardour/splash.h index 1843d00c93..821ecd99fa 100644 --- a/gtk2_ardour/splash.h +++ b/gtk2_ardour/splash.h @@ -38,7 +38,7 @@ class Splash : public Gtk::Window static Splash* instance() { return the_splash; } - void display (); + void display (); void pop_back_for (Gtk::Window&); void pop_front ();