blob: 74e38f3b6f659c03fb3a56aff479719f6c6b6f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
diff --git a/src/Application.vala b/src/Application.vala
index 026cad4..f521e73 100644
--- a/src/Application.vala
+++ b/src/Application.vala
@@ -63,6 +63,9 @@ namespace App {
* @return {@code void}
*/
public override void activate () {
+ Gtk.Settings.get_default ().gtk_theme_name = "io.elementary.stylesheet.blueberry";
+ Gtk.Settings.get_default ().gtk_icon_theme_name = "elementary";
+
if (controller == null) {
controller = new AppController (this);
}
|