From 07201fc28000c4759b5d7863623f531f47796244 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 22 Feb 2020 08:39:13 +0530 Subject: [PATCH] Content server: Fix a regression that broke scrolling in the server in 4.11. Fixes #1864263 [Content server new scrolling issues with 4.11.1](https://bugs.launchpad.net/calibre/+bug/1864263) --- src/pyj/book_list/main.pyj | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pyj/book_list/main.pyj b/src/pyj/book_list/main.pyj index 23a6d01152..b52de2eb9a 100644 --- a/src/pyj/book_list/main.pyj +++ b/src/pyj/book_list/main.pyj @@ -67,9 +67,7 @@ def init_ui(): install(translations) remove_initial_progress_bar() document.head.appendChild(E.style(get_widget_css())) - # See https://github.com/kovidgoyal/calibre/pull/1101 - # for why we need touch-action: none - set_css(document.body, background_color=get_color('window-background'), color=get_color('window-foreground'), touch_action='none') + set_css(document.body, background_color=get_color('window-background'), color=get_color('window-foreground')) document.body.appendChild(E.div()) document.body.lastChild.appendChild(E.div(id=book_list_container_id, style='display: none')) document.body.lastChild.appendChild(E.div(id=read_book_container_id, style='display: none'))