Fixes hi-dpi on Linux

- Fixes incorrect install path for icons
- Fixes case-sensitive issues with names
This commit is contained in:
Pandagrapher
2022-12-08 10:03:45 +01:00
parent eb40593d60
commit cc48ad2aa1
3 changed files with 3 additions and 7 deletions

View File

@@ -112,7 +112,7 @@ RTWindow::RTWindow ()
// Setting default theme and icon theme (bases for custom themes)
Gtk::Settings::get_for_screen (screen)->property_gtk_theme_name() = "Adwaita";
Gtk::Settings::get_for_screen (screen)->property_gtk_application_prefer_dark_theme() = true;
Gtk::Settings::get_for_screen (screen)->property_gtk_icon_theme_name() = "RawTherapee";
Gtk::Settings::get_for_screen (screen)->property_gtk_icon_theme_name() = "rawtherapee";
// Initialize RTScalable for Hi-DPI support
RTScalable::init(this);