summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-07 23:56:17 +0000
committerDavid Robillard <d@drobilla.net>2012-08-07 23:56:17 +0000
commitaf4589e4bca634fee8d894a8dd2878ad011f5f15 (patch)
tree5a4cbf18c95c51443902e549df8796bd9be7f855 /gtk2_ardour
parentee80d2a95ff1fddf3a79c2541a4aade88a6b4a09 (diff)
Set splash screen to non-resizable so it displays correctly in smart window managers.
There is an attempt in the code to handle the situation of being allocated more space, but it does not work correctly. The splash isn't resizable anyway, this fix makes it appear as it should. git-svn-id: svn://localhost/ardour2/branches/3.0@13111 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/splash.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/splash.cc b/gtk2_ardour/splash.cc
index 78b5547ded..ad7585e541 100644
--- a/gtk2_ardour/splash.cc
+++ b/gtk2_ardour/splash.cc
@@ -78,6 +78,7 @@ Splash::Splash ()
add (darea);
set_default_size (pixbuf->get_width(), pixbuf->get_height());
+ set_resizable (false);
the_splash = this;
expose_done = false;