mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Touchscreen: Abort ongoing short taps if touch interaction mode changes (#14305)
This commit is contained in:
parent
df9975f35d
commit
2b99dabdac
2 changed files with 10 additions and 0 deletions
|
@ -1091,6 +1091,15 @@ void TouchScreenGUI::applyContextControls(const TouchInteractionMode &mode)
|
|||
|
||||
u64 now = porting::getTimeMs();
|
||||
|
||||
// If the meanings of short and long taps have been swapped, abort any ongoing
|
||||
// short taps because they would do something else than the player expected.
|
||||
// Long taps don't need this, they're adjusted to the swapped meanings instead.
|
||||
if (mode != m_last_mode) {
|
||||
m_dig_pressed_until = 0;
|
||||
m_place_pressed_until = 0;
|
||||
}
|
||||
m_last_mode = mode;
|
||||
|
||||
switch (m_tap_state) {
|
||||
case TapState::ShortTap:
|
||||
if (mode == SHORT_DIG_LONG_PLACE) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue