2021-03-29 01:51:34 -07:00
|
|
|
import QtQuick 2.12
|
2021-03-16 00:02:20 -07:00
|
|
|
import Qt.labs.settings 1.0
|
|
|
|
|
|
|
|
Settings {
|
2021-03-29 01:51:34 -07:00
|
|
|
property int viewMethod: 0
|
2021-03-16 00:02:20 -07:00
|
|
|
property bool showHidden: false
|
2021-03-29 01:51:34 -07:00
|
|
|
property int width: 900
|
|
|
|
property int height: 580
|
2021-03-16 08:19:36 -07:00
|
|
|
property int desktopIconSize: 128
|
|
|
|
property int maximumIconSize: 256
|
|
|
|
property int minimumIconSize: 128
|
2021-03-16 00:02:20 -07:00
|
|
|
}
|