From a45645c32a83b9302c5eb690bc57c137e7afe8eb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 7 Nov 2015 15:37:51 +0530 Subject: [PATCH] Disable selection in the cover grid --- src/pyj/book_list/views.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/book_list/views.pyj b/src/pyj/book_list/views.pyj index ffcbea21dc..816d9349f4 100644 --- a/src/pyj/book_list/views.pyj +++ b/src/pyj/book_list/views.pyj @@ -80,7 +80,7 @@ class BooksView: def init_cover_grid(self): div = self.grid - set_css(div, display='flex', flex_wrap='wrap', justify_content='flex-start', align_items='flex-end', align_content='flex-start') + set_css(div, display='flex', flex_wrap='wrap', justify_content='flex-start', align_items='flex-end', align_content='flex-start', user_select='none') div.setAttribute('class', 'cover_grid') self.cover_grid_width = self.cover_grid_height = -1