mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-07-18 03:04:13 -04:00
UI: Fix unable to escape when renaming scene
Fixes https://obsproject.com/mantis/view.php?id=1443
This commit is contained in:
@@ -7290,3 +7290,17 @@ void SceneRenameDelegate::setEditorData(QWidget *editor,
|
||||
if (lineEdit)
|
||||
lineEdit->selectAll();
|
||||
}
|
||||
|
||||
bool SceneRenameDelegate::eventFilter(QObject *editor, QEvent *event)
|
||||
{
|
||||
if (event->type() == QEvent::KeyPress) {
|
||||
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
|
||||
if (keyEvent->key() == Qt::Key_Escape) {
|
||||
QLineEdit *lineEdit = qobject_cast<QLineEdit*>(editor);
|
||||
if (lineEdit)
|
||||
lineEdit->undo();
|
||||
}
|
||||
}
|
||||
|
||||
return QStyledItemDelegate::eventFilter(editor, event);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user