Skip to content

Commit

Permalink
Fix css resource path
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Oct 14, 2024
1 parent 17866ce commit 9976c2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Services/Appearance.vala
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public class Monitor.Appearance : Object {
gtk_settings.gtk_application_prefer_dark_theme = is_dark;

if (is_dark) {
provider.load_from_resource ("/com/github/elementary/monitor/monitor-dark.css");
provider.load_from_resource ("/io/elementary/monitor/monitor-dark.css");
} else {
provider.load_from_resource ("/com/github/elementary/monitor/monitor-light.css");
provider.load_from_resource ("/io/elementary/monitor/monitor-light.css");
}
});
}
Expand Down

0 comments on commit 9976c2a

Please sign in to comment.