1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

fix trailing whitespace

This commit is contained in:
bbedward
2025-12-27 09:43:42 -05:00
parent f7650b5e1f
commit 23a93082c6
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ import qs.Services
Singleton {
id: root
readonly property bool hasOutputBackend: WlrOutputService.wlrOutputAvailable
readonly property bool hasOutputBackend: WlrOutputService.wlrOutputAvailable
readonly property var wlrOutputs: WlrOutputService.outputs
property var outputs: ({})
property var savedOutputs: ({})

View File

@@ -75,7 +75,7 @@ Column {
width: parent.width
text: I18n.tr("Mirror Display")
addHorizontalPadding: true
property var otherOutputs: {
const list = [I18n.tr("None")];
for (const name in DisplayConfigState.outputs) {
@@ -92,7 +92,7 @@ Column {
const val = pending !== undefined ? pending : (root.outputData.mirror || "");
return val === "" ? I18n.tr("None") : val;
}
onValueChanged: value => {
const realVal = value === I18n.tr("None") ? "" : value;
DisplayConfigState.setPendingChange(root.outputName, "mirror", realVal);