diff --git a/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino b/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino index ed9dbf9a1dc9..227ddeaad32b 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_27_esp32_shutter.ino @@ -246,7 +246,7 @@ bool ShutterButtonHandlerMulti(void) Button.last_state[button_index], Button.press_counter[button_index], Button.window_timer[button_index], Shutter[shutter_index].button_simu_pressed); // multipress event handle back to main procedure - if (Button.press_counter[button_index]>3) return false; + if (Button.press_counter[button_index]>4) return false; if (!Shutter[shutter_index].button_simu_pressed) { uint8_t pos_press_index = Button.press_counter[button_index]-1;