From 4b66213736efed9ff7e2ce33a918fa6860f261eb Mon Sep 17 00:00:00 2001 From: Hecklezz Date: Thu, 3 Apr 2025 23:13:16 +1000 Subject: [PATCH] Fixes the Antialiasing type setting in preferences not displaying and saving correctly. --- indra/newview/llfloaterpreference.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index b2d2fdeba3..a1fc362d28 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -2339,7 +2339,7 @@ void LLFloaterPreference::refresh() LLPanel::refresh(); // Improved graphics preferences - getChild("fsaa")->setValue((LLSD::Integer) gSavedSettings.getU32("RenderFSAASamples")); + getChild("fsaa")->setValue((LLSD::Integer) gSavedSettings.getU32("RenderFSAAType")); updateSliderText(getChild("RenderPostProcess", true), getChild("PostProcessText", true)); LLAvatarComplexityControls::setIndirectControls(); setMaxNonImpostorsText(gSavedSettings.getU32("RenderAvatarMaxNonImpostors"),getChild("IndirectMaxNonImpostorsText", true));