forked from mia/Aegisub
Remove the annoyance known as Tip of the Day. Right now it's completely inaccessible, but might return in a different incarnation when we get out of strings freeze.
Originally committed to SVN as r2831.
This commit is contained in:
parent
6ec31a3a08
commit
e2a75490c9
3 changed files with 1 additions and 11 deletions
|
@ -112,7 +112,6 @@ DialogOptions::DialogOptions(wxWindow *parent)
|
||||||
wxFlexGridSizer *genSizer4 = new wxFlexGridSizer(2,2,5,5);
|
wxFlexGridSizer *genSizer4 = new wxFlexGridSizer(2,2,5,5);
|
||||||
|
|
||||||
AddCheckBox(generalPage,genSizer4,_("Show Splash Screen"),_T("Show splash"));
|
AddCheckBox(generalPage,genSizer4,_("Show Splash Screen"),_T("Show splash"));
|
||||||
AddCheckBox(generalPage,genSizer4,_("Show Tip of the Day"),_T("Tips enabled"));
|
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
AddCheckBox(generalPage,genSizer4,_("Auto Check for Updates"),_T("Auto check for updates"));
|
AddCheckBox(generalPage,genSizer4,_("Auto Check for Updates"),_T("Auto check for updates"));
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -147,12 +147,7 @@ FrameMain::FrameMain (wxArrayString args)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
|
||||||
#if !_DEBUG
|
|
||||||
// Show tip of the day
|
|
||||||
TipOfTheDay::Show(this);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
wxSafeYield();
|
wxSafeYield();
|
||||||
|
|
||||||
// Set autosave timer
|
// Set autosave timer
|
||||||
|
|
|
@ -89,11 +89,7 @@ void OptionsManager::LoadDefaults(bool onlyDefaults,bool doOverride) {
|
||||||
SetModificationType(MOD_AUTOMATIC);
|
SetModificationType(MOD_AUTOMATIC);
|
||||||
|
|
||||||
// Broken on OS X during startup only.
|
// Broken on OS X during startup only.
|
||||||
#ifdef __APPLE__
|
|
||||||
SetBool(_T("Tips enabled"),false);
|
SetBool(_T("Tips enabled"),false);
|
||||||
#else
|
|
||||||
SetBool(_T("Tips enabled"),true);
|
|
||||||
#endif
|
|
||||||
SetBool(_T("Show splash"),true);
|
SetBool(_T("Show splash"),true);
|
||||||
SetBool(_T("Local config"),false);
|
SetBool(_T("Local config"),false);
|
||||||
SetInt(_T("Undo levels"),8);
|
SetInt(_T("Undo levels"),8);
|
||||||
|
|
Loading…
Add table
Reference in a new issue