Skip to content

Commit d3ec2ff

Browse files
committed
Application: Use Vala-style properties
1 parent 1cd1d07 commit d3ec2ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Application.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ public class Sequeler.Application : Gtk.Application {
121121
unowned string desktop_environment = Environment.get_variable ("XDG_CURRENT_DESKTOP");
122122
if (desktop_environment != "Pantheon") {
123123
// Force elementary stylesheet to prevent broken UI on other DEs
124-
gtk_settings.set_property ("gtk-theme-name", "elementary");
125-
gtk_settings.set_property ("gtk-icon-theme-name", "elementary");
124+
gtk_settings.gtk_theme_name = "elementary";
125+
gtk_settings.gtk_icon_theme_name = "elementary";
126126
}
127127
}
128128

0 commit comments

Comments
 (0)