10 lines
208 B
QML
10 lines
208 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
|
||
|
}
|