Skip to content

Commit

Permalink
Fix recipe book flipping two pages at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureAaron committed Jun 20, 2024
1 parent b9771e1 commit 6fbe98c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public boolean mouseClicked(double mouseX, double mouseY, int button) {
return true;
} else if (results != null) {
this.searchField.setFocused(false);
this.results.mouseClicked(mouseX, mouseY, button);

return this.results.mouseClicked(mouseX, mouseY, button);
}

return false;
Expand Down

0 comments on commit 6fbe98c

Please sign in to comment.