summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-06-01 16:27:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-06-01 16:27:47 +0000
commit98f44aa20cef3c59506c2b15af92c6499d8b1c57 (patch)
tree9c9e2081eb710905cab3038b5aa271740ed41b41
parent6930071cdbccf78f3871027991355a3fc524ba4b (diff)
destroy splash when hiding it to workaround odd bug on OS X where the window will reappear as other windows get relayered or deleted
git-svn-id: svn://localhost/ardour2/branches/3.0@12526 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/ardour_ui.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index f5c9a37605..29b1f954f2 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -2845,7 +2845,8 @@ void
ARDOUR_UI::hide_splash ()
{
if (splash) {
- splash->hide();
+ delete splash;
+ splash = 0;
}
}