Update interface/src/ui/PreferencesDialog.cpp

Removed extraneous ! from value retrieval (as if there aren't enough of them in here)
This commit is contained in:
Heather Anderson 2020-04-10 22:51:20 -07:00 committed by GitHub
parent 9187a680cd
commit bc5dd45187
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -259,7 +259,7 @@ void setupPreferences() {
}
{
auto getter = []()->bool { return !Menu::getInstance()->isOptionChecked(MenuOption::DisableCrashLogger); };
auto getter = []()->bool { return Menu::getInstance()->isOptionChecked(MenuOption::DisableCrashLogger); };
auto setter = [](bool value) { Menu::getInstance()->setIsOptionChecked(MenuOption::DisableCrashLogger, !value); };
preferences->addPreference(new CheckPreference("Privacy", "Send crashes - Vircadia uses information provided by your "
"client to improve the product through crash reports. By allowing Vircadia to collect "