UI: Add text autoselect for source rename

master
Anthony Torres 2019-04-07 03:36:04 -04:00 committed by jp9000
parent bd71839259
commit fdae1bbc0f
1 changed files with 1 additions and 0 deletions

View File

@ -259,6 +259,7 @@ void SourceTreeItem::EnterEditMode()
setFocusPolicy(Qt::StrongFocus);
boxLayout->removeWidget(label);
editor = new QLineEdit(label->text());
editor->selectAll();
editor->installEventFilter(this);
boxLayout->insertWidget(1, editor);
setFocusProxy(editor);