pressing ui left now works as expected

This commit is contained in:
Adrian Schmid 2023-08-12 11:28:23 +02:00
parent e638bad668
commit 64e479b1a5
1 changed files with 1 additions and 1 deletions

View File

@ -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