Skip to content

Commit

Permalink
Allow changing focus of lyrics edit via tab key
Browse files Browse the repository at this point in the history
* This way it is no longer possible to insert a tab directly but that's
  likely not wanted anyways
* See #59
  • Loading branch information
Martchus committed Oct 6, 2020
1 parent e890a53 commit 7503d51
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gui/tagfieldedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ ClearLineEdit *TagFieldEdit::setupLineEdit()
ClearPlainTextEdit *TagFieldEdit::setupPlainTextEdit()
{
m_plainTextEdit = new ClearPlainTextEdit(this);
m_plainTextEdit->setTabChangesFocus(true);
m_plainTextEdit->setClearButtonEnabled(true);
m_plainTextEdit->addCustomAction(setupLockAction());
m_plainTextEdit->addCustomAction(setupRestoreAction());
Expand Down

0 comments on commit 7503d51

Please sign in to comment.