SyntaxGameServer/RCCService2018/content/internal/Chat/Modules/LuaChat/Utils/getInputEvent.lua

10 lines
252 B
Lua

local luaAppLegacyInputDisabledGlobally = settings():GetFFlag('LuaAppLegacyInputDisabledGlobally2')
return function(component)
if luaAppLegacyInputDisabledGlobally then
return component.Activated
else
return component.MouseButton1Click
end
end