Skip to content

Commit

Permalink
fix: space-before-param lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
golamrabbiazad committed Sep 15, 2024
1 parent 929e0f3 commit 1205a75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Widgets/PinnedItemsFlowBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ public class Widgets.PinnedItemsFlowBox : Adw.Bin {
});

project.item_deleted.connect ((item) => {
update_pinboard(item);
update_pinboard (item);
});

Services.EventBus.get_default ().item_moved.connect ((item) => {
update_pinboard(item);
update_pinboard (item);
});

Services.Store.instance ().item_pin_change.connect ((item) => {
Expand Down Expand Up @@ -133,7 +133,7 @@ public class Widgets.PinnedItemsFlowBox : Adw.Bin {
}
}

private void update_pinboard(Objects.Item item) {
private void update_pinboard (Objects.Item item) {
if (!items_map.has_key (item.id)) {
return;
}
Expand Down

0 comments on commit 1205a75

Please sign in to comment.