From 81ddb15b0fa24fa27744e0e7ce570e2495bfe17c Mon Sep 17 00:00:00 2001 From: Morgan Hardwood Date: Sun, 20 Sep 2015 18:32:14 +0200 Subject: [PATCH] Added great looking, slim, neutral-colored Gtk3 theme, cookiedough.css --- rtgui/editorpanel.cc | 2 +- rtgui/filepanel.cc | 2 +- rtgui/main.cc | 2 +- rtgui/preferences.cc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rtgui/editorpanel.cc b/rtgui/editorpanel.cc index d1fc5b0d0..78b6f657f 100644 --- a/rtgui/editorpanel.cc +++ b/rtgui/editorpanel.cc @@ -169,7 +169,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel) // build right side panel vboxright = new Gtk::VBox (false, 0); - vboxright->set_size_request(250, 250); + vboxright->set_size_request(300, 250); vboxright->set_border_width (2); diff --git a/rtgui/filepanel.cc b/rtgui/filepanel.cc index bc3afabe5..2f8b032f8 100644 --- a/rtgui/filepanel.cc +++ b/rtgui/filepanel.cc @@ -76,7 +76,7 @@ FilePanel::FilePanel () : parent(NULL) fileCatalog->setDirBrowserRemoteInterface (dirBrowser); rightBox = Gtk::manage ( new Gtk::HBox () ); - rightBox->set_size_request(270, 100); + rightBox->set_size_request(350, 100); rightNotebook = Gtk::manage ( new Gtk::Notebook () ); rightNotebookSwitchConn = rightNotebook->signal_switch_page().connect_notify( sigc::mem_fun(*this, &FilePanel::on_NB_switch_page) ); //Gtk::VBox* taggingBox = Gtk::manage ( new Gtk::VBox () ); diff --git a/rtgui/main.cc b/rtgui/main.cc index 6c2187f6f..25c4e9bdb 100644 --- a/rtgui/main.cc +++ b/rtgui/main.cc @@ -321,7 +321,7 @@ int main(int argc, char **argv) } if (options.slimUI) { - filename = argv0 + "/themes/slim.css"; + filename = argv0 + "/themes/cookiedough.css"; cssSlim = Gtk::CssProvider::create(); try { diff --git a/rtgui/preferences.cc b/rtgui/preferences.cc index 430ba1c25..b3fec7b4f 100644 --- a/rtgui/preferences.cc +++ b/rtgui/preferences.cc @@ -1985,7 +1985,7 @@ void Preferences::switchThemeTo(Glib::ustring newTheme, bool slimInterface) slimCreated = true; } - filename = argv0 + "/themes/slim.css"; + filename = argv0 + "/themes/cookiedough.css"; try { cssSlim->load_from_path (filename);