Skip to content

Commit

Permalink
#14 always undefined title option added
Browse files Browse the repository at this point in the history
  • Loading branch information
antroids committed Mar 17, 2024
1 parent 689cdfe commit 2626794
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions package/contents/config/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
<choice name="AppName" />
<choice name="Decoration" />
<choice name="GenericAppName" />
<choice name="AlwaysUndefined" />
</choices>
<default>2</default>
</entry>
Expand Down
2 changes: 1 addition & 1 deletion package/contents/ui/config/ConfigAppearance.qml
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ in \"Icons theme\" field instead")
id: windowTitleSource

Kirigami.FormData.label: i18n("Window title source:")
model: [i18n("Application name"), i18n("Decoration"), i18n("Generic Application name")]
model: [i18n("Application name"), i18n("Decoration"), i18n("Generic Application name"), i18n("Always undefined")]
}

RowLayout {
Expand Down
2 changes: 2 additions & 0 deletions package/contents/ui/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ PlasmoidItem {
return tasksModel.activeWindow.decoration;
case 2:
return tasksModel.activeWindow.genericAppName;
case 3:
return plasmoid.configuration.windowTitleUndefined;
}
}

Expand Down

0 comments on commit 2626794

Please sign in to comment.