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
+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();