summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_dialogs.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-07-23 08:42:05 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-22 15:31:22 -0500
commit8c54142734a03df7526be1d5feb29282fb248329 (patch)
treeba28cb01eef759b25b977c163657473dc0a8cc6f /gtk2_ardour/ardour_ui_dialogs.cc
parent90845af8fa89101b53761d6c1843c3d0daa87119 (diff)
hide splash in a sensible and understandable way
Diffstat (limited to 'gtk2_ardour/ardour_ui_dialogs.cc')
-rw-r--r--gtk2_ardour/ardour_ui_dialogs.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/gtk2_ardour/ardour_ui_dialogs.cc b/gtk2_ardour/ardour_ui_dialogs.cc
index 08174a62bc..b0beeb50af 100644
--- a/gtk2_ardour/ardour_ui_dialogs.cc
+++ b/gtk2_ardour/ardour_ui_dialogs.cc
@@ -326,13 +326,6 @@ ARDOUR_UI::unload_session (bool hide_stuff)
return 0;
}
-static bool
-_hide_splash (gpointer arg)
-{
- ((ARDOUR_UI*)arg)->hide_splash();
- return false;
-}
-
void
ARDOUR_UI::show_tabbable (Tabbable* t)
{
@@ -340,11 +333,6 @@ ARDOUR_UI::show_tabbable (Tabbable* t)
return;
}
- if (splash && splash->is_visible()) {
- // in 2 seconds, hide the splash screen
- Glib::signal_timeout().connect (sigc::bind (sigc::ptr_fun (_hide_splash), this), 2000);
- }
-
t->make_visible ();
}
@@ -363,10 +351,6 @@ ARDOUR_UI::attach_tabbable (Tabbable* t)
if (!t) {
return;
}
- if (splash && splash->is_visible()) {
- // in 2 seconds, hide the splash screen
- Glib::signal_timeout().connect (sigc::bind (sigc::ptr_fun (_hide_splash), this), 2000);
- }
t->attach ();
}