summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-29 12:15:07 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:45 -0400
commitfae3aee849e8d0cd0c5c0fa420fb7c4ceb9852df (patch)
tree5eaef051ce7c1470822697293b1e4d9a46546504 /gtk2_ardour
parentcb4b6bf8a3dff70c22e63f2f7b01abe225cee9fc (diff)
tweak layout in theme manager prefs
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/theme_manager.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc
index 18ac65662c..e402bf1a3e 100644
--- a/gtk2_ardour/theme_manager.cc
+++ b/gtk2_ardour/theme_manager.cc
@@ -79,7 +79,7 @@ ThemeManager::ThemeManager()
, palette_window (0)
{
Gtk::HBox* hbox;
-
+
/* Now the alias list */
alias_list = TreeStore::create (alias_columns);
@@ -119,9 +119,12 @@ ThemeManager::ThemeManager()
color_theme_dropdown.set_active_text (UIConfiguration::instance().get_color_file());
hbox = Gtk::manage (new Gtk::HBox());
+ Gtk::Alignment* align = Gtk::manage (new Gtk::Alignment);
+ align->set (0, 0.5);
+ align->add (color_theme_dropdown);
hbox->set_spacing (6);
hbox->pack_start (color_theme_label, false, false);
- hbox->pack_start (color_theme_dropdown, true, false);
+ hbox->pack_start (*align, true, true);
pack_start (*hbox, PACK_SHRINK);
}
@@ -146,8 +149,11 @@ ThemeManager::ThemeManager()
hbox = Gtk::manage (new Gtk::HBox());
hbox->set_spacing (6);
+ Gtk::Alignment* align = Gtk::manage (new Gtk::Alignment);
+ align->set (0, 0.5);
+ align->add (icon_set_dropdown);
hbox->pack_start (icon_set_label, false, false);
- hbox->pack_start (icon_set_dropdown, true, false);
+ hbox->pack_start (*align, true, true);
pack_start (*hbox, PACK_SHRINK);
}