mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
refactor(client/interface): nui focus tweaks
Add helper functions to set nui focus and restore previous input state. Ensure focus is reset before triggering responses (promises/callbacks).
This commit is contained in:
12
resource/interface/client/main.lua
Normal file
12
resource/interface/client/main.lua
Normal file
@@ -0,0 +1,12 @@
|
||||
local keepInput = IsNuiFocusKeepingInput()
|
||||
|
||||
function lib.setNuiFocus(allowInput, disableCursor)
|
||||
keepInput = IsNuiFocusKeepingInput()
|
||||
SetNuiFocus(true, not disableCursor)
|
||||
SetNuiFocusKeepInput(allowInput)
|
||||
end
|
||||
|
||||
function lib.resetNuiFocus()
|
||||
SetNuiFocus(false, false)
|
||||
SetNuiFocusKeepInput(keepInput)
|
||||
end
|
||||
Reference in New Issue
Block a user