mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-07 05:55:37 -05:00
19 lines
374 B
QML
19 lines
374 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Widgets
|
|
|
|
Column {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankToggle {
|
|
text: "24-Hour Format"
|
|
description: "Use 24-hour time format instead of 12-hour AM/PM"
|
|
checked: Prefs.use24HourClock
|
|
onToggled: (checked) => {
|
|
return Prefs.setClockFormat(checked);
|
|
}
|
|
}
|
|
|
|
}
|