Commit 729de8fe authored by Sergey Chupligin's avatar Sergey Chupligin

[AppLauncher] Fix icon size

parent 7255535a
...@@ -32,9 +32,9 @@ import QtQuick.Controls.Styles.Nemo 1.0 ...@@ -32,9 +32,9 @@ import QtQuick.Controls.Styles.Nemo 1.0
GridView { GridView {
id: gridview id: gridview
cellWidth: parent.width/4 cellWidth: Math.min(parent.width,parent.height)/4
cellHeight: cellWidth + 30 cellHeight: cellWidth + 30
width: Math.floor(parent.width / cellWidth) * cellWidth width: parent.width
cacheBuffer: gridview.contentHeight cacheBuffer: gridview.contentHeight
property Item reorderItem property Item reorderItem
property bool onUninstall property bool onUninstall
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment