summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-01 15:48:53 +0000
committerDavid Robillard <d@drobilla.net>2011-10-01 15:48:53 +0000
commit77c9f5d809c29219ce53ae9531e5fcae1705485b (patch)
treeb409482ab00f66b8d8f20d05c4cb8045ce89e5a4 /src/gui/PatchWindow.cpp
parent0b5e66d26f571cadd9ca8329fb4ff1ac6baf4989 (diff)
downloadingen-77c9f5d809c29219ce53ae9531e5fcae1705485b.tar.gz
ingen-77c9f5d809c29219ce53ae9531e5fcae1705485b.tar.bz2
ingen-77c9f5d809c29219ce53ae9531e5fcae1705485b.zip
Hide documentation pane on initial show.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3518 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchWindow.cpp')
-rw-r--r--src/gui/PatchWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/PatchWindow.cpp b/src/gui/PatchWindow.cpp
index 6e40e257..2fff6f81 100644
--- a/src/gui/PatchWindow.cpp
+++ b/src/gui/PatchWindow.cpp
@@ -107,7 +107,6 @@ PatchWindow::PatchWindow(BaseObjectType* cobject,
xml->get_widget("patch_help_about_menuitem", _menu_help_about);
xml->get_widget("patch_documentation_paned", _doc_paned);
xml->get_widget("patch_documentation_scrolledwindow", _doc_scrolledwindow);
- xml->get_widget("patch_documentation_textview", _doc_textview);
_menu_view_control_window->property_sensitive() = false;
string engine_name = App::instance().engine()->uri().str();
@@ -276,7 +275,8 @@ PatchWindow::set_patch(SharedPtr<const PatchModel> patch,
removed_port_connection = patch->signal_editable().connect(
sigc::mem_fun(this, &PatchWindow::editable_changed));
- show_all();
+ show();
+ _alignment->show_all();
_view->signal_object_entered.connect(sigc::mem_fun(this, &PatchWindow::object_entered));
_view->signal_object_left.connect(sigc::mem_fun(this, &PatchWindow::object_left));