summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-05-20 09:42:15 +0800
committerErik Kundiman <erik@megapahit.org>2026-05-20 09:42:15 +0800
commit9107d29b1e549ea9e4cc5dbacb15137abf972511 (patch)
treeb969542cca14a26439ec19220e1b1610f4ef97d7
parent413d8019997e11893a9226b7109cbfaaf0c2e21d (diff)
Fix "Double click on land"'s "No action" on Linux
I believe it was meant to grey out "Automatic" on "Mouse Warp". Also, FreeBSD is added to this condition.
-rw-r--r--indra/newview/llfloaterpreference.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp
index d05eb975ae..cb708050fd 100644
--- a/indra/newview/llfloaterpreference.cpp
+++ b/indra/newview/llfloaterpreference.cpp
@@ -773,9 +773,9 @@ void LLFloaterPreference::onOpen(const LLSD& key)
// Load (double-)click to walk/teleport settings.
updateClickActionViews();
-#if LL_LINUX
+#if LL_LINUX || __FreeBSD__
// Lixux doesn't support automatic mode
- LLComboBox* combo = getChild<LLComboBox>("double_click_action_combo");
+ LLComboBox* combo = getChild<LLComboBox>("mouse_warp_combo");
S32 mode = gSavedSettings.getS32("MouseWarpMode");
if (mode == 0)
{