Skip to content

Commit

Permalink
Fix warning for gtk_window_deiconify()
Browse files Browse the repository at this point in the history
  • Loading branch information
rozhuk-im committed May 11, 2021
1 parent f4193b5 commit 4ee2ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gtk-mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ gtk_mixer_status_icon_activate(GtkStatusIcon *status_icon __unused,
gtk_widget_hide(app->window);
} else {
gtk_widget_show(app->window);
gtk_window_deiconify(app->window);
gtk_window_deiconify(GTK_WINDOW(app->window));
}
}

Expand Down

0 comments on commit 4ee2ce1

Please sign in to comment.