Editor layout dialog: name field grabs focus on popup
This commit is contained in:
parent
7155f75e22
commit
d558ced434
2 changed files with 8 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/*************************************************************************/
|
||||
/* editor_node.cpp */
|
||||
/* editor_layout_dialog.cpp */
|
||||
/*************************************************************************/
|
||||
/* This file is part of: */
|
||||
/* GODOT ENGINE */
|
||||
|
@ -35,6 +35,12 @@ void EditorLayoutDialog::clear_layout_name() {
|
|||
layout_name->clear();
|
||||
}
|
||||
|
||||
void EditorLayoutDialog::_post_popup() {
|
||||
|
||||
ConfirmationDialog::_post_popup();
|
||||
layout_name->grab_focus();
|
||||
}
|
||||
|
||||
void EditorLayoutDialog::ok_pressed() {
|
||||
|
||||
if (layout_name->get_text()!="") {
|
||||
|
|
|
@ -43,6 +43,7 @@ protected:
|
|||
|
||||
static void _bind_methods();
|
||||
virtual void ok_pressed();
|
||||
virtual void _post_popup();
|
||||
|
||||
public:
|
||||
void clear_layout_name();
|
||||
|
|
Loading…
Reference in a new issue