Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion io.github.ellie_commons.jorts.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: io.github.ellie_commons.jorts
runtime: io.elementary.Platform
runtime-version: '8.1'
runtime-version: '8.2'
sdk: io.elementary.Sdk
command: io.github.ellie_commons.jorts

Expand Down
1 change: 1 addition & 0 deletions src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ public class Jorts.Application : Gtk.Application {
public override void startup () {
debug ("[JORTS] Jorts Startup…");
base.startup ();
Gtk.init ();
Granite.init ();

add_action_entries (ACTION_ENTRIES, this);
Expand Down
9 changes: 0 additions & 9 deletions src/Services/Themer.vala
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,6 @@ namespace Jorts.Themer {
public static void init_all_themes () {
debug ("[THEMER] Init all themes");

// Use standard sheet
var app_provider = new Gtk.CssProvider ();
app_provider.load_from_resource ("/io/github/ellie_commons/jorts/Application.css");
Gtk.StyleContext.add_provider_for_display (
Gdk.Display.get_default (),
app_provider,
Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION + 1
);

// Then generate all theme classes
foreach (unowned var theme in Jorts.Themes.all_string ()) {
var theme_provider = new Gtk.CssProvider ();
Expand Down