summaryrefslogtreecommitdiff
path: root/src/ui/listwidget.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-02-21 21:05:13 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-02-21 21:05:13 +0200
commit4175ca0db94fafcf18072187c462e0b61e71016b (patch)
tree89d2c404ea7d3b5e22032f370990bde406f4f058 /src/ui/listwidget.c
parentd7a4a193e219032e16bd8480de833dc064b35277 (diff)
iOS: Working on menu styling
Diffstat (limited to 'src/ui/listwidget.c')
-rw-r--r--src/ui/listwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/listwidget.c b/src/ui/listwidget.c
index fe53c595..28a19b9c 100644
--- a/src/ui/listwidget.c
+++ b/src/ui/listwidget.c
@@ -138,7 +138,7 @@ void updateVisible_ListWidget(iListWidget *d) {
138void setItemHeight_ListWidget(iListWidget *d, int itemHeight) { 138void setItemHeight_ListWidget(iListWidget *d, int itemHeight) {
139 d->itemHeight = itemHeight; 139 d->itemHeight = itemHeight;
140 if (deviceType_App() != desktop_AppDeviceType) { 140 if (deviceType_App() != desktop_AppDeviceType) {
141 d->itemHeight += gap_UI; 141 d->itemHeight += 1.5 * gap_UI;
142 } 142 }
143 invalidate_ListWidget(d); 143 invalidate_ListWidget(d);
144} 144}