Skip to content

Commit

Permalink
chore: add back "Do nothing" preset option
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbocanegra committed Jan 15, 2025
1 parent 5ea0b95 commit ff8965e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package/contents/ui/configPresetAutoload.qml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ KCM.SimpleKCM {
// console.log(stdout);
if(cmd === listPresetsCmd) {
if (stdout.length === 0) return
presetsModel.append(
{
"name": i18n("Do nothing"),
"value": "",
}
)

const out = stdout.trim().split("\n")
for (const line of out) {
Expand Down

0 comments on commit ff8965e

Please sign in to comment.