Add "Remove" shortcut to scenes context menu

master
Palana 2014-10-15 22:01:49 +02:00
parent 2e290b8493
commit 523baef7f5
1 changed files with 2 additions and 1 deletions

View File

@ -1585,7 +1585,8 @@ void OBSBasic::on_scenes_customContextMenuRequested(const QPoint &pos)
if (item)
popup.addAction(QTStr("Remove"),
this, SLOT(RemoveSelectedScene()));
this, SLOT(RemoveSelectedScene()),
DeleteKeys.front());
popup.exec(QCursor::pos());
}