From 83182245d66001e1bb874a9f1572ceec08f20fbd Mon Sep 17 00:00:00 2001 From: QuantumEntangledAndy Date: Thu, 17 Oct 2024 08:29:33 +0700 Subject: [PATCH] Disable swipe gestures while in edit mode --- public/scripts/RossAscends-mods.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/public/scripts/RossAscends-mods.js b/public/scripts/RossAscends-mods.js index 69bd7c7a0..bcea77223 100644 --- a/public/scripts/RossAscends-mods.js +++ b/public/scripts/RossAscends-mods.js @@ -933,6 +933,12 @@ export function initRossMods() { if (!$(e.target).closest('#sheld').length) { return; } + if ($('#curEditTextarea')) { + // Don't swipe while in text edit mode + // the ios selection gestures get picked up + // as swipe gestures + return; + } var SwipeButR = $('.swipe_right:last'); var SwipeTargetMesClassParent = $(e.target).closest('.last_mes'); if (SwipeTargetMesClassParent !== null) { @@ -951,6 +957,12 @@ export function initRossMods() { if (!$(e.target).closest('#sheld').length) { return; } + if ($('#curEditTextarea')) { + // Don't swipe while in text edit mode + // the ios selection gestures get picked up + // as swipe gestures + return; + } var SwipeButL = $('.swipe_left:last'); var SwipeTargetMesClassParent = $(e.target).closest('.last_mes'); if (SwipeTargetMesClassParent !== null) {