summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-26 10:45:41 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:45 -0400
commit29b9c4ecc30348573fc8bdc3403527a6baac1b67 (patch)
tree81987f5d6edabfd7412839f00fe7abca05d19d16
parentce68505a51bfa4b7f682361aa393ba926a99ebac (diff)
set default pane divider position to 0.5
-rw-r--r--libs/gtkmm2ext/pane.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/gtkmm2ext/pane.cc b/libs/gtkmm2ext/pane.cc
index 2470116ea3..07667a9115 100644
--- a/libs/gtkmm2ext/pane.cc
+++ b/libs/gtkmm2ext/pane.cc
@@ -88,6 +88,7 @@ Pane::add_divider ()
d->signal_motion_notify_event().connect (sigc::bind (sigc::mem_fun (*this, &Pane::handle_motion_event), d), false);
d->set_parent (*this);
d->show ();
+ d->fract = 0.5;
dividers.push_back (d);
}