summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-26 15:01:16 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-09-26 15:01:16 +0800
commit8d9dc8e6863d6845e8872cd8dc6a79f57ded1f31 (patch)
treeadaad5ccdd9ea0ed4758f9a87656e465ae019ff4
parent1f5ff7c520519e7c9eeaf3f168e3adcf9eb5d15b (diff)
Cell height is 1.6 times the width
-rw-r--r--Eduport.ui.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eduport.ui.qml b/Eduport.ui.qml
index 0154bf5..747fdbf 100644
--- a/Eduport.ui.qml
+++ b/Eduport.ui.qml
@@ -4,6 +4,6 @@ import QtQuick.Controls 2.15
GridView {
cellWidth: width < 576 ? parent.width : width < 768 ? parent.width / 2
: width < 992 ? parent.width / 3 : parent.width / 4
- cellHeight: cellWidth
+ cellHeight: cellWidth * 1.6
ScrollBar.vertical: ScrollBar {}
}