Skip to content

Commit

Permalink
Fix Bookmarks DnD (#476)
Browse files Browse the repository at this point in the history
Co-authored-by: slprime <[email protected]>
  • Loading branch information
slprime and slprime authored Apr 24, 2024
1 parent acaead4 commit 9fd9aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/codechicken/nei/BookmarkPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -2060,7 +2060,7 @@ public boolean onMouseWheel(int shift, int mousex, int mousey) {
return false;
}

if (NEIClientUtils.controlKey()) {
if (!inEditingState() && NEIClientUtils.controlKey()) {
final ItemPanelSlot slot = getSlotMouseOver(mousex, mousey);

if (slot != null) {
Expand Down

0 comments on commit 9fd9aad

Please sign in to comment.