summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2007-07-10 19:11:59 +0000
committerDoug McLain <doug@nostar.net>2007-07-10 19:11:59 +0000
commit74eded425a5244831c80968c1781c3f81f90e996 (patch)
tree9bc96d0c26e6a2ba1d26b6c87489d2e21f241dc0 /libs/gtkmm2ext
parent8144a70087298eb05c9b7c53b9b4845413620cc1 (diff)
show() widgets explicitly in the MixerUI window, fix UI::just_hide_it(), so that it only hides the requested widget
git-svn-id: svn://localhost/ardour2/trunk@2127 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/gtkmm2ext')
-rw-r--r--libs/gtkmm2ext/gtk_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/gtk_ui.cc b/libs/gtkmm2ext/gtk_ui.cc
index 442a5a22de..3ac8e905d1 100644
--- a/libs/gtkmm2ext/gtk_ui.cc
+++ b/libs/gtkmm2ext/gtk_ui.cc
@@ -579,7 +579,7 @@ UI::flush_pending ()
bool
UI::just_hide_it (GdkEventAny *ev, Window *win)
{
- win->hide_all ();
+ win->hide ();
return true;
}