Add Carl's focus title hack as a devtool option

This commit is contained in:
James Graham
2024-04-21 17:02:26 +00:00
parent 92895a7d00
commit 125974dd7a
3 changed files with 15 additions and 0 deletions

View File

@@ -29,5 +29,14 @@ FormCard.FormCardPage {
onToggled: Config.alwaysVerifyDevice = checked
}
FormCard.FormCheckDelegate {
text: i18nc("@option:check", "Show focus in window header")
checked: Config.windowTitleFocus
onToggled: {
Config.windowTitleFocus = checked;
Config.save();
}
}
}
}