Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Mobile
Commits
472a8716
Commit
472a8716
authored
May 20, 2022
by
Devin Lin
🎨
Browse files
quicksettings: Fix enabled text always displaying "On"
parent
d69a941c
Changes
1
Hide whitespace changes
Inline
Side-by-side
components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml
View file @
472a8716
...
...
@@ -78,7 +78,7 @@ QuickSettingsDelegate {
Components.MarqueeLabel
{
// if no status is given, just use On/Off
inputText
:
status
?
status
:
(
enabled
?
i18n
(
"
On
"
)
:
i18n
(
"
Off
"
))
inputText
:
root
.
status
?
root
.
status
:
(
root
.
enabled
?
i18n
(
"
On
"
)
:
i18n
(
"
Off
"
))
opacity
:
0.6
Layout.fillWidth
:
true
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment