Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/interact_menu/initSettings.inc.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private _categoryColors = [_category, format ["| %1 |", LELSTRING(common,subcate
QGVAR(useListMenuSelf), "CHECKBOX",
LSTRING(UseListMenu),
[_category, LELSTRING(Interaction,InteractionMenuSelf)],
false,
(productVersion select 6) == "OSX",
false
] call CBA_fnc_addSetting;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could also guard setting by using an intermediate gvar in code

GVAR(useListMenuSelf) -> GVAR(useListMenuSelfActual)
{ // setting change eh
GVAR(useListMenuSelfActual) = _this || {(productVersion select 6) == "OSX"}
}

Copy link
Member Author

@BrettMayson BrettMayson Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What would be the benefit of this? Just preventing the circular mode on OSX?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if server has locked settings for some reason


Expand Down