NEW:DailyTips

Change-Id: I510e96652c9a0c9fe422546b09b2d035d9e46a23
This commit is contained in:
liz.li 2022-09-15 14:51:29 +08:00 committed by Lane.Wei
parent c9499b7401
commit 81da77d1e0
9 changed files with 1366 additions and 5 deletions

View file

@ -1635,6 +1635,10 @@ static wxMenu* generate_help_menu()
append_menu_item(helpMenu, wxID_ANY, about_title, about_title,
[](wxCommandEvent&) { Slic3r::GUI::about(); });
#endif
append_menu_item(helpMenu, wxID_ANY, _L("Show Tip of the Day"), _L("Show Tip of the Day"), [](wxCommandEvent&) {
wxGetApp().plater()->get_notification_manager()->push_hint_notification(false);
wxGetApp().plater()->get_current_canvas3D()->set_as_dirty();
});
append_menu_item(helpMenu, wxID_ANY, _L("Open Network Test"), _L("Open Network Test"), [](wxCommandEvent&) {
NetworkTestDialog dlg(wxGetApp().mainframe);