mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
don't move the cursor with up/down arrow keys in search bar
This commit is contained in:
parent
68d9af52c6
commit
0d7567e636
1 changed files with 2 additions and 0 deletions
|
@ -83,6 +83,7 @@ func search(text: String) -> void:
|
||||||
## Callback for [member search_line_edit]'s input events. Handles highlighting items when navigating with up/down arrow keys.
|
## Callback for [member search_line_edit]'s input events. Handles highlighting items when navigating with up/down arrow keys.
|
||||||
func _on_search_line_edit_gui_input(event: InputEvent) -> void:
|
func _on_search_line_edit_gui_input(event: InputEvent) -> void:
|
||||||
if event.is_action_pressed("ui_down"):
|
if event.is_action_pressed("ui_down"):
|
||||||
|
search_line_edit.accept_event()
|
||||||
var category: Category
|
var category: Category
|
||||||
for i: String in categories:
|
for i: String in categories:
|
||||||
var c: Category = categories[i]
|
var c: Category = categories[i]
|
||||||
|
@ -103,6 +104,7 @@ func _on_search_line_edit_gui_input(event: InputEvent) -> void:
|
||||||
scroll_container.ensure_control_visible(category.get_child(item + 1))
|
scroll_container.ensure_control_visible(category.get_child(item + 1))
|
||||||
|
|
||||||
if event.is_action_pressed("ui_up"):
|
if event.is_action_pressed("ui_up"):
|
||||||
|
search_line_edit.accept_event()
|
||||||
var category: Category
|
var category: Category
|
||||||
for i: String in categories:
|
for i: String in categories:
|
||||||
var c: Category = categories[i]
|
var c: Category = categories[i]
|
||||||
|
|
Loading…
Reference in a new issue