Skip to content

Commit

Permalink
remove_item_finish -> remove_finish
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter committed Feb 16, 2025
1 parent 52104d0 commit 204b1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ItemManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@
}

item.set_revealed (false);
item.revealed_done.connect (remove_item_finish);
item.revealed_done.connect (remove_finish);
}

private void remove_item_finish (BaseItem item) {
private void remove_finish (BaseItem item) {
width_request = get_width (); // Temporarily set the width request to avoid flicker until the animation calls the callback for the first time

remove (item);
Expand Down

0 comments on commit 204b1da

Please sign in to comment.