Skip to content

Commit

Permalink
Silence keep above failure during override
Browse files Browse the repository at this point in the history
  • Loading branch information
abb128 committed Feb 17, 2023
1 parent b8907fd commit 9314355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window-helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ bool is_keep_above_supported(GtkWindow *window) {
}

bool set_window_keep_above(GtkWindow *window, bool keep_above) {
if(is_keep_above_overridden) return false;
if(is_keep_above_overridden) return true;

GdkDisplay *display = gtk_widget_get_display(GTK_WIDGET(window));

Expand Down

0 comments on commit 9314355

Please sign in to comment.