summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-01 04:55:00 +0000
committerDavid Robillard <d@drobilla.net>2011-10-01 04:55:00 +0000
commita55d08e0d1af511e5b4e2d9a8c3be1822fff840c (patch)
treea0a7a5c93c60c89236fc1dc46f77b6ca3ef3a963 /src/gui/PatchWindow.cpp
parent5757ab645cae1d844d6d457ab2dea4a12d21a4e7 (diff)
downloadingen-a55d08e0d1af511e5b4e2d9a8c3be1822fff840c.tar.gz
ingen-a55d08e0d1af511e5b4e2d9a8c3be1822fff840c.tar.bz2
ingen-a55d08e0d1af511e5b4e2d9a8c3be1822fff840c.zip
Saner default size for initial show of documentation pane.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3516 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchWindow.cpp')
-rw-r--r--src/gui/PatchWindow.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/PatchWindow.cpp b/src/gui/PatchWindow.cpp
index d03d665e..d0de48a4 100644
--- a/src/gui/PatchWindow.cpp
+++ b/src/gui/PatchWindow.cpp
@@ -67,6 +67,7 @@ PatchWindow::PatchWindow(BaseObjectType* cobject,
, _x(0)
, _y(0)
, _breadcrumbs(NULL)
+ , _has_shown_documentation(false)
{
property_visible() = false;
@@ -104,6 +105,7 @@ PatchWindow::PatchWindow(BaseObjectType* cobject,
xml->get_widget("patch_view_messages_window_menuitem", _menu_view_messages_window);
xml->get_widget("patch_view_patch_tree_window_menuitem", _menu_view_patch_tree_window);
xml->get_widget("patch_help_about_menuitem", _menu_help_about);
+ xml->get_widget("patch_documentation_paned", _doc_paned);
xml->get_widget("patch_documentation_viewport", _doc_viewport);
xml->get_widget("patch_documentation_textview", _doc_textview);
@@ -321,6 +323,12 @@ PatchWindow::show_documentation(const std::string& doc, bool html)
_doc_viewport->add(*view);
_doc_viewport->show_all();
#endif
+ if (!_has_shown_documentation) {
+ int width, height;
+ get_size(width, height);
+ _doc_paned->set_position(width / 1.61803399);
+ }
+ _has_shown_documentation = true;
}
void