diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-27 07:31:56 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-27 07:31:56 +0800 |
commit | 2bc8b1d8351e037dc5accb8e4f18228191159551 (patch) | |
tree | 61e27e01d587e33c36c85ec7b0069a37183fafc4 /MinimalGrid.ui.qml | |
parent | 1cb729b0988a4b50e7aa822c3e60e03624acb113 (diff) |
Rename again for consistencies/conventions/clarity
Diffstat (limited to 'MinimalGrid.ui.qml')
-rw-r--r-- | MinimalGrid.ui.qml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/MinimalGrid.ui.qml b/MinimalGrid.ui.qml deleted file mode 100644 index 5956957..0000000 --- a/MinimalGrid.ui.qml +++ /dev/null @@ -1,9 +0,0 @@ -import QtQuick 2.15 -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 * 1.3 - ScrollBar.vertical: ScrollBar {} -} |