diff --git a/aegisub/src/dialog_options.cpp b/aegisub/src/dialog_options.cpp index 117bfdfba..3615eb414 100644 --- a/aegisub/src/dialog_options.cpp +++ b/aegisub/src/dialog_options.cpp @@ -112,7 +112,6 @@ DialogOptions::DialogOptions(wxWindow *parent) wxFlexGridSizer *genSizer4 = new wxFlexGridSizer(2,2,5,5); AddCheckBox(generalPage,genSizer4,_("Show Splash Screen"),_T("Show splash")); - AddCheckBox(generalPage,genSizer4,_("Show Tip of the Day"),_T("Tips enabled")); #ifdef __WXMSW__ AddCheckBox(generalPage,genSizer4,_("Auto Check for Updates"),_T("Auto check for updates")); #endif diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 0ff5d187b..deffc5738 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -147,12 +147,7 @@ FrameMain::FrameMain (wxArrayString args) } else #endif - { -#if !_DEBUG - // Show tip of the day - TipOfTheDay::Show(this); -#endif - } + wxSafeYield(); // Set autosave timer diff --git a/aegisub/src/options.cpp b/aegisub/src/options.cpp index 2f209c5cb..5049b71af 100644 --- a/aegisub/src/options.cpp +++ b/aegisub/src/options.cpp @@ -89,11 +89,7 @@ void OptionsManager::LoadDefaults(bool onlyDefaults,bool doOverride) { SetModificationType(MOD_AUTOMATIC); // Broken on OS X during startup only. -#ifdef __APPLE__ SetBool(_T("Tips enabled"),false); -#else - SetBool(_T("Tips enabled"),true); -#endif SetBool(_T("Show splash"),true); SetBool(_T("Local config"),false); SetInt(_T("Undo levels"),8);