From 9f3694cfa4b12a97a85559aa18c7bdfe5615d59d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 19 Jul 2023 11:32:30 +0530 Subject: [PATCH] Fix #2027968 [In the Touch behavior settings of the Content Server, action descriptions are the same regardless of the action](https://bugs.launchpad.net/calibre/+bug/2027968) --- src/pyj/read_book/prefs/touch.pyj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pyj/read_book/prefs/touch.pyj b/src/pyj/read_book/prefs/touch.pyj index 3b9017e101..454b56d042 100644 --- a/src/pyj/read_book/prefs/touch.pyj +++ b/src/pyj/read_book/prefs/touch.pyj @@ -41,6 +41,7 @@ def apply_settings_to_ui(overrides): if not current_action or allowed_actions.indexOf(current_action) < 0: current_action = 'none' select.value = current_action + select.dispatchEvent(new Event('change', {'view': window,'bubbles': True})) def get_overrides_from_ui(): ans = {}