mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
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
1 changed files with 5 additions and 0 deletions
|
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
#include <gtkmm/stock.h>
|
#include <gtkmm/stock.h>
|
||||||
#include <gtkmm2ext/gtk_ui.h>
|
#include <gtkmm2ext/gtk_ui.h>
|
||||||
|
#include <gtkmm2ext/window_title.h>
|
||||||
#include <gtkmm/settings.h>
|
#include <gtkmm/settings.h>
|
||||||
|
|
||||||
#include <pbd/file_utils.h>
|
#include <pbd/file_utils.h>
|
||||||
|
|
@ -51,6 +52,10 @@ ThemeManager::ThemeManager()
|
||||||
dark_button ("Dark Theme"),
|
dark_button ("Dark Theme"),
|
||||||
light_button ("Light 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_list = ListStore::create (columns);
|
||||||
color_display.set_model (color_list);
|
color_display.set_model (color_list);
|
||||||
color_display.append_column (_("Object"), columns.name);
|
color_display.append_column (_("Object"), columns.name);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue