diff --git a/cl_radar.lua b/cl_radar.lua index 943011a..707949a 100644 --- a/cl_radar.lua +++ b/cl_radar.lua @@ -1719,17 +1719,17 @@ function RunControlManager() if ( IsDisabledControlJustPressed( 1, CONFIG.keys[keyType].plate_rear_lock ) ) then READER:LockCam( "rear", true, false ) end + + -- Toggles between the keybind types + if ( IsDisabledControlJustPressed( 1, CONFIG.keys.switch_keys ) ) then + RADAR:ToggleFullKeyboard() + end end -- Toggles the key lock state if ( IsDisabledControlJustPressed( 1, CONFIG.keys.key_lock ) ) then RADAR:ToggleKeyLock() end - - -- Toggles between the keybind types - if ( IsDisabledControlJustPressed( 1, CONFIG.keys.switch_keys ) ) then - RADAR:ToggleFullKeyboard() - end end end