Skip to content

Commit

Permalink
WindowManager: Remove unneeded return (#1971)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter authored Jul 7, 2024
1 parent 812caff commit 563c8a0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/WindowManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace Gala {
});
}

private bool show_stage () {
private void show_stage () {
unowned Meta.Display display = get_display ();

screen_shield = new ScreenShield (this);
Expand Down Expand Up @@ -377,8 +377,6 @@ namespace Gala {
display.get_context ().notify_ready ();
return GLib.Source.REMOVE;
});

return false;
}

private void update_ui_group_size () {
Expand Down

0 comments on commit 563c8a0

Please sign in to comment.