15 lines
450 B
QML
15 lines
450 B
QML
// Copyright (C) 2022 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
pragma Singleton
|
|
|
|
import QtCore
|
|
|
|
Settings {
|
|
// The properties here are given default values to account for the first run of the application.
|
|
// After the application has run once, future values will come from the stored settings.
|
|
property bool showDoneTasks: true
|
|
property int maxTasks: 30
|
|
property int fontSize: 18
|
|
}
|