Skip to content

Commit

Permalink
fixup(radar): input frame should not be modal..
Browse files Browse the repository at this point in the history
  • Loading branch information
mwerle committed Nov 15, 2024
1 parent 1b370e3 commit 3d9193e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/pigui/modules/radar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ local keys = {
radar_zoom_in = Input.RegisterActionBinding('BindRadarZoomIn', input_group, { activator = { key = Input.keys.comma } } ),
radar_zoom_out = Input.RegisterActionBinding('BindRadarZoomOut', input_group, { activator = { key = Input.keys.period } } ),
}
local input_frame = Input.CreateInputFrame("ShipHudRadar", true)
local input_frame = Input.CreateInputFrame("ShipHudRadar", false)
input_frame:AddAction(keys.radar_reset)
input_frame:AddAction(keys.radar_toggle_mode)
input_frame:AddAction(keys.radar_zoom_in)
Expand Down

0 comments on commit 3d9193e

Please sign in to comment.