mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-21 08:52:48 +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:
@@ -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