Pressing enter inside input now posts, further improvements

This commit is contained in:
ElPumpo
2018-06-09 19:00:29 +02:00
parent f4291d1564
commit 4433dbd68d
6 changed files with 38 additions and 6 deletions
+9
View File
@@ -132,4 +132,13 @@ Citizen.CreateThread(function()
end
end
end
end)
-- close the menu when script is restarting to avoid being stuck in NUI focus
AddEventHandler('onResourceStop', function(resource)
if resource == GetCurrentResourceName() then
if menuIsShowed then
TriggerEvent('esx_atm:closeATM')
end
end
end)