You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
322 B
QML
13 lines
322 B
QML
import QtQuick 2.0
|
|
import Qt.labs.settings 1.0
|
|
|
|
Settings {
|
|
property int viewMethod: 0 // 0 = Grid, 1 = List
|
|
property bool showHidden: false
|
|
property int width: 1080
|
|
property int height: 645
|
|
property int desktopIconSize: 128
|
|
property int maximumIconSize: 256
|
|
property int minimumIconSize: 128
|
|
}
|