Skip to content

Commit

Permalink
Application: Replace Gtk.Window.present_with_time with present
Browse files Browse the repository at this point in the history
It's deprecated in Gtk 4.14
  • Loading branch information
ryonakano committed May 25, 2024
1 parent fe5ff05 commit 180394c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class IconBrowser.App : Gtk.Application {
settings.bind ("window-maximized", main_window, "maximized", SettingsBindFlags.SET);
}

active_window.present_with_time (Gdk.CURRENT_TIME);
active_window.present ();
}

public static int main (string[] args) {
Expand Down

0 comments on commit 180394c

Please sign in to comment.