feat: add tooltip for rename on double-click setting (#6184)

This commit is contained in:
James Upjohn
2025-05-03 23:16:40 +12:00
committed by GitHub
parent 54efa648b1
commit 18dcd84afd
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
- Minor: Popup overlay now only draws an outline when being interacted with. (#6140)
- Minor: Made filters searchable in the Settings dialog search bar. (#5890)
- Minor: Updated emojis to Unicode 16.0. (#6155)
- Minor: Allow disabling of double-click tab renaming through setting. (#6163)
- Minor: Allow disabling of double-click tab renaming through setting. (#6163, #6184)
- Bugfix: Don't create native messaging manifest file if browser directory doesn't exist. (#6116)
- Bugfix: Fixed scrolling now working on inputs in the settings. (#6128)
- Bugfix: Make reply-cancel button less coarse-grained. (#6106)
+5 -2
View File
@@ -1369,8 +1369,11 @@ void GeneralPage::initLayout(GeneralPageView &layout)
"Enable experimental Twitch EventSub support (requires restart)",
s.enableExperimentalEventSub);
layout.addCheckbox("Disable renaming of tabs on double-click",
s.disableTabRenamingOnClick);
SettingWidget::checkbox("Disable renaming of tabs on double-click",
s.disableTabRenamingOnClick)
->setTooltip("Prevents the rename dialog from opening when a "
"tab is double-clicked")
->addTo(layout);
layout.addStretch();