mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-11 19:04:50 +01:00
Fix focus grab for commit messages
This commit is contained in:
parent
d71acccb38
commit
34b24344d4
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ onready var output = $Control/Output
|
|||
onready var repo = $"../Repositories/ActiveRepository"
|
||||
onready var command_dropdown = $Control/InputLine/CommandDropdown
|
||||
onready var main = get_parent()
|
||||
onready var text_editor = $"../TextEditor"
|
||||
|
||||
var premade_commands = [
|
||||
'git commit --allow-empty -m "empty"',
|
||||
|
@ -27,7 +28,7 @@ func _ready():
|
|||
command_dropdown.theme.default_font = load("res://fonts/default.tres")
|
||||
|
||||
func _input(event):
|
||||
if event is InputEventKey:
|
||||
if event is InputEventKey and not text_editor.visible:
|
||||
input.grab_focus()
|
||||
if history.size() > 0:
|
||||
if event.is_action_pressed("ui_up"):
|
||||
|
|
Loading…
Reference in a new issue