aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2020-04-06 20:26:19 +0200
committerNotkea2020-04-11 04:12:42 +0200
commit36877c2e4cd1d1a920ca2b7a5ce14e01ee49b1f6 (patch)
treef224b106c4fe83a93f859206e3375b0763956470
parent0ee006143bbdaabd6fac40a924cf8f1a1aa80be1 (diff)
downloadldgallery-36877c2e4cd1d1a920ca2b7a5ce14e01ee49b1f6.tar.gz
viewer: fix touchpad scroll in filter proposition list
Dragscroll plays badly with touchpads and brings no benefit on desktop. It is still supported on touchscreen devices natively in the presence of the scrollbars.
-rw-r--r--viewer/src/views/PanelLeft.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue
index 0fe0164..541b296 100644
--- a/viewer/src/views/PanelLeft.vue
+++ b/viewer/src/views/PanelLeft.vue
@@ -26,7 +26,7 @@
26 /> 26 />
27 <ld-command-search @clear="clear" @search="search" /> 27 <ld-command-search @clear="clear" @search="search" />
28 <h1 class="title">{{$t('panelLeft.propositions')}}</h1> 28 <h1 class="title">{{$t('panelLeft.propositions')}}</h1>
29 <div v-dragscroll class="scrollbar no-scroll-x"> 29 <div class="scrollbar no-scroll-x">
30 <ld-proposition 30 <ld-proposition
31 v-for="(category) in $galleryStore.tagsCategories" 31 v-for="(category) in $galleryStore.tagsCategories"
32 :key="category.tag" 32 :key="category.tag"