From 95f2e4199b8f500beab4fae262715a237e14902b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 Jun 2019 18:28:45 -0600 Subject: [PATCH] adjust h-size of color theme manager "Reset to Defaults" button --- gtk2_ardour/color_theme_manager.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/color_theme_manager.cc b/gtk2_ardour/color_theme_manager.cc index bc98fcec13..ed9f4adf47 100644 --- a/gtk2_ardour/color_theme_manager.cc +++ b/gtk2_ardour/color_theme_manager.cc @@ -150,7 +150,10 @@ ColorThemeManager::ColorThemeManager () table.attach (notebook, 0, 3, n, n + 1); ++n; - table.attach (reset_button, 0, 3, n, n + 1); + + Alignment* a = manage (new Alignment (0, 0.5, 0, 1.0)); + a->add (reset_button); + table.attach (*a, 0, 1, n, n + 1); color_dialog.get_colorsel()->set_has_opacity_control (true); color_dialog.get_colorsel()->set_has_palette (true);