add option to open tooltips by pressing the mouse button

This commit is contained in:
Firmino Veras
2025-11-14 09:55:06 -03:00
parent 4b8f294a91
commit 2ccdf3b751
10 changed files with 34 additions and 15 deletions
@@ -334,4 +334,17 @@ ContentPage {
}
}
}
ContentSection {
icon: "tooltip"
title: Translation.tr("Tooltips")
ConfigSwitch {
buttonIcon: "web_traffic"
text: Translation.tr("Click to show")
checked: Config.options.bar.tooltips.clickToShow
onCheckedChanged: {
Config.options.bar.tooltips.clickToShow = checked;
}
}
}
}