You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add preference to disable daily tips after slicing (#3142)
Users had no way to permanently turn off the daily tips panel that
appears in the slicing notification. Add a 'Show daily tips after
slicing' checkbox to Preferences. When unchecked:
- DailyTipsWindow::open() returns early without showing tips
- SlicingProgressNotification skips the separator + tips panel,
collapsing the notification to its compact progress-only height
Config key: show_daily_tips (default: enabled)
Closes#3142
auto title_index_and_tip = create_item_title(_L("Home page and daily tips"), page, _L("Home page and daily tips"));
1594
1594
auto item_home_page = create_item_checkbox(_L("Show home page on startup"), page, _L("Show home page on startup"), 50, "show_home_page");
1595
-
//auto item_daily_tip = create_item_checkbox(_L("Show daily tip on startup"), page, _L("Show daily tip on startup"), 50, "show_daily_tips");
1595
+
auto item_daily_tip = create_item_checkbox(_L("Show daily tips after slicing"), page, _L("If enabled, daily tips are shown in the slicing notification panel after slicing completes."), 50, "show_daily_tips");
0 commit comments