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
This commit is contained in:
parent
26305a73d7
commit
cf1adb02db
@ -24,6 +24,7 @@
|
||||
|
||||
#include <gtkmm/stock.h>
|
||||
#include <gtkmm2ext/gtk_ui.h>
|
||||
#include <gtkmm2ext/window_title.h>
|
||||
#include <gtkmm/settings.h>
|
||||
|
||||
#include <pbd/file_utils.h>
|
||||
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user