Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MiniDexed/commit/37ad81b718e11e3977b328f77e73389b7389af62?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Better click behaviour when no double click is mapped

pull/274/head
Stephen Brown 3 years ago
parent c050e04db1
commit 37ad81b718
  1. 8
      src/uibuttons.cpp

@ -165,7 +165,13 @@ CUIButton::BtnTrigger CUIButton::ReadTrigger (void)
m_debounceTimer = 0;
LOGDBG ("Up");
if (m_timer >= DOUBLE_CLICK_TIME && m_timer < LONG_PRESS_TIME && m_numClicks == 1) {
if (m_numClicks == 1 &&
(m_doubleClickEvent == BtnEventNone ||
m_timer >= DOUBLE_CLICK_TIME && m_timer < LONG_PRESS_TIME)
) {
// Either the user released the button when there is no double
// click mapped
// OR:
// The user released the button after the double click
// timeout, but before the long press timeout
reset();

Loading…
Cancel
Save