Tooltips: add option to disable all tooltips in general tab

This commit is contained in:
Ly-sec
2025-10-05 10:38:32 +02:00
parent 77f1ef8893
commit 641e28eee6
10 changed files with 40 additions and 3 deletions
+7
View File
@@ -82,6 +82,13 @@ ColumnLayout {
onToggled: checked => Settings.data.general.dimDesktop = checked
}
NToggle {
label: I18n.tr("settings.general.ui.tooltips.label")
description: I18n.tr("settings.general.ui.tooltips.description")
checked: Settings.data.ui.tooltipsEnabled
onToggled: checked => Settings.data.ui.tooltipsEnabled = checked
}
ColumnLayout {
spacing: Style.marginXXS * scaling
Layout.fillWidth: true