diff options
author | Ansariel <none@none> | 2016-03-10 10:00:03 +0100 |
---|---|---|
committer | Ansariel <none@none> | 2016-03-10 10:00:03 +0100 |
commit | 6f799b0a587c53587edd1dbef8ec69ca974b9a85 (patch) | |
tree | ee18b03940df7b688167d869893f3dfdeb9c071b /indra/newview/llfloaterpreference.cpp | |
parent | 6fb7c6b43cfbe4cc56c8123780a8272ca06222a1 (diff) |
Fix default preset not shown as selected in quick graphics pulldown for non-english languages
Diffstat (limited to 'indra/newview/llfloaterpreference.cpp')
-rw-r--r-- | indra/newview/llfloaterpreference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index c4e9292d90..3a0abc919f 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -2521,7 +2521,7 @@ void LLPanelPreferenceGraphics::setPresetText() { if (preset_graphic_active == PRESETS_DEFAULT) { - preset_graphic_active = LLTrans::getString("Default"); + preset_graphic_active = LLTrans::getString(PRESETS_DEFAULT); } preset_text->setText(preset_graphic_active); } |