From cf1adb02db2e51c8ca96169b91d84a18b512f64f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 10 Oct 2007 01:24:04 +0000 Subject: [PATCH] Make theme manager dialog's title similar in style to the others on the same menu. git-svn-id: svn://localhost/ardour2/trunk@2535 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/theme_manager.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc index c1e662d016..2de1e2b653 100644 --- a/gtk2_ardour/theme_manager.cc +++ b/gtk2_ardour/theme_manager.cc @@ -24,6 +24,7 @@ #include #include +#include #include #include @@ -51,6 +52,10 @@ ThemeManager::ThemeManager() dark_button ("Dark Theme"), light_button ("Light Theme") { + Gtkmm2ext::WindowTitle title (Glib::get_application_name ()); + title += _("Theme Manager"); + set_title (title.get_string ()); + color_list = ListStore::create (columns); color_display.set_model (color_list); color_display.append_column (_("Object"), columns.name);