pressing ui left now works as expected
This commit is contained in:
parent
e638bad668
commit
64e479b1a5
|
|
@ -266,7 +266,7 @@ func _input(event):
|
||||||
|
|
||||||
elif event.is_action_pressed("ui_left"): # left to switch context to the left
|
elif event.is_action_pressed("ui_left"): # left to switch context to the left
|
||||||
active_context -= 1
|
active_context -= 1
|
||||||
if active_context < -1:
|
if active_context <= -1:
|
||||||
active_context = ui_context.POST_IT_LIST
|
active_context = ui_context.POST_IT_LIST
|
||||||
|
|
||||||
elif event.is_action_pressed("ui_right"): # right to switch context to the right
|
elif event.is_action_pressed("ui_right"): # right to switch context to the right
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue