aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/VirtualList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/src/components/VirtualList.vue')
-rw-r--r--apps/files/src/components/VirtualList.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/src/components/VirtualList.vue b/apps/files/src/components/VirtualList.vue
index be7b21fc299..daf021e8ed5 100644
--- a/apps/files/src/components/VirtualList.vue
+++ b/apps/files/src/components/VirtualList.vue
@@ -131,13 +131,13 @@ export default Vue.extend({
itemHeight() {
// Align with css in FilesListVirtual
- // 166px + 32px (name) + 16px (mtime) + 16px (padding) + 22px (grid gap)
- return this.gridMode ? (166 + 32 + 16 + 16 + 22) : 55
+ // 166px + 32px (name) + 16px (mtime) + 16px (padding)
+ return this.gridMode ? (166 + 32 + 16 + 16) : 55
},
// Grid mode only
itemWidth() {
- // 166px + 16px padding + 22px grid gap
- return 166 + 16 + 22
+ // 166px + 16px padding
+ return 166 + 16
},
rowCount() {