summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-07-09 21:32:13 +0200
committerRobin Gareus <robin@gareus.org>2014-07-09 21:47:12 +0200
commit0be1555ba6788ec3acb902e015c84b6fdf7e9e23 (patch)
tree74c03fd8796fc9cb0aeeb1822afa64d26ffa6c9b
parent12d913893a98da54d5182e31c37c02d484564a19 (diff)
reduce space around TearOff Tickmarks
-rw-r--r--gtk2_ardour/editor.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index accada4014..7f9732434d 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -2760,7 +2760,7 @@ Editor::setup_toolbar ()
{
HBox* mode_box = manage(new HBox);
mode_box->set_border_width (2);
- mode_box->set_spacing(4);
+ mode_box->set_spacing(2);
HBox* mouse_mode_box = manage (new HBox);
HBox* mouse_mode_hbox = manage (new HBox);
@@ -2802,7 +2802,7 @@ Editor::setup_toolbar ()
mouse_mode_hbox->pack_start (mouse_timefx_button, false, false);
mouse_mode_hbox->pack_start (mouse_audition_button, false, false);
mouse_mode_hbox->pack_start (mouse_draw_button, false, false);
- mouse_mode_hbox->pack_start (internal_edit_button, false, false, 8);
+ mouse_mode_hbox->pack_start (internal_edit_button, false, false, 4);
}
mouse_mode_vbox->pack_start (*mouse_mode_hbox);
@@ -2959,7 +2959,7 @@ Editor::setup_toolbar ()
/* Pack everything in... */
HBox* hbox = manage (new HBox);
- hbox->set_spacing(10);
+ hbox->set_spacing(2);
_tools_tearoff = manage (new TearOff (*hbox));
_tools_tearoff->set_name ("MouseModeBase");
@@ -2978,7 +2978,7 @@ Editor::setup_toolbar ()
_tools_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
&_tools_tearoff->tearoff_window(), 0));
- toolbar_hbox.set_spacing (10);
+ toolbar_hbox.set_spacing (2);
toolbar_hbox.set_border_width (1);
toolbar_hbox.pack_start (*_mouse_mode_tearoff, false, false);