summaryrefslogtreecommitdiff
path: root/gtk2_ardour/color_theme_manager.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-12-28 20:03:37 +0100
committerRobin Gareus <robin@gareus.org>2016-12-28 22:19:37 +0100
commitf2e00dfe07403421a2dd01b12ae6d22080d41e53 (patch)
tree9cf009c3fb1bcff6b58989d7a136fbd879c4e10f /gtk2_ardour/color_theme_manager.cc
parent9b9cb4beaade6b3349d543d3490da7cd6add6154 (diff)
Prefs Dialog: consistent headings, spacing, reduce width,..
Diffstat (limited to 'gtk2_ardour/color_theme_manager.cc')
-rw-r--r--gtk2_ardour/color_theme_manager.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/gtk2_ardour/color_theme_manager.cc b/gtk2_ardour/color_theme_manager.cc
index 8431edc1da..1e381f1854 100644
--- a/gtk2_ardour/color_theme_manager.cc
+++ b/gtk2_ardour/color_theme_manager.cc
@@ -61,7 +61,10 @@ ColorThemeManager::ColorThemeManager ()
, palette_window (0)
, color_theme_label (_("Color Theme"))
{
- _box->set_spacing (12);
+ Label* l = manage (new Label (string_compose ("<b>%1</b>", _("Colors"))));
+ l->set_alignment (0, 0.5);
+ l->set_use_markup (true);
+ _box->pack_start (*l, false, false);
std::map<string,string> color_themes;
@@ -146,8 +149,8 @@ ColorThemeManager::ColorThemeManager ()
notebook.set_size_request (400, 400);
- _box->pack_start (notebook, true, true);
- _box->pack_start (reset_button, false, false);
+ _box->pack_start (notebook, true, true, 12);
+ _box->pack_start (reset_button, false, false, 12);
color_dialog.get_colorsel()->set_has_opacity_control (true);
color_dialog.get_colorsel()->set_has_palette (true);