@rpg-engine/long-bow 0.3.78 → 0.3.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/long-bow.cjs.development.js +1 -1
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +1 -1
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Item/Inventory/ItemSlot.tsx +5 -1
package/package.json
CHANGED
|
@@ -346,7 +346,11 @@ export const ItemSlot: React.FC<IProps> = observer(
|
|
|
346
346
|
}, 100);
|
|
347
347
|
} else if (item) {
|
|
348
348
|
let isTouch = false;
|
|
349
|
-
if (
|
|
349
|
+
if (
|
|
350
|
+
!isContextMenuDisabled &&
|
|
351
|
+
e.type === 'touchend' &&
|
|
352
|
+
!isSelectingShortcut
|
|
353
|
+
) {
|
|
350
354
|
isTouch = true;
|
|
351
355
|
setIsTooltipMobileVisible(true);
|
|
352
356
|
}
|