#841: Remove incorrect ClickType.CONTROL_DROP from ClickType#isShiftClick

This commit is contained in:
RyGuy 2023-03-30 19:43:40 +11:00 committed by md_5
parent bceda6abd9
commit 9153f77e75
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -114,6 +114,6 @@ public enum ClickType {
* @return true if the action uses Shift.
*/
public boolean isShiftClick() {
return (this == ClickType.SHIFT_LEFT) || (this == ClickType.SHIFT_RIGHT) || (this == ClickType.CONTROL_DROP);
return (this == ClickType.SHIFT_LEFT) || (this == ClickType.SHIFT_RIGHT);
}
}