When using Bugspluat there is no way to ask before uploading a crash,

disable that option.
master
Nicky Dasmijn 2020-01-04 14:27:56 +01:00
parent 2e2c08676a
commit 09de24bf1d
1 changed files with 7 additions and 0 deletions

View File

@ -4959,6 +4959,13 @@ void LLPanelPreferenceCrashReports::refresh()
getChild<LLUICtrl>("checkSendCrashReportsAlwaysAsk")->setEnabled(fEnable);
getChild<LLUICtrl>("checkSendSettings")->setEnabled(fEnable);
getChild<LLUICtrl>("checkSendName")->setEnabled(fEnable);
// <FS:ND> Disable options not available when compiling with Bugsplat and set those to default values.
#ifdef LL_BUGSPLAT
getChild<LLUICtrl>("checkSendCrashReportsAlwaysAsk")->setEnabled(false);
getChild<LLUICtrl>("checkSendCrashReportsAlwaysAsk")->setValue(false);
#endif
// </FS:ND>
}
void LLPanelPreferenceCrashReports::apply()