Last active
August 20, 2020 20:33
-
-
Save mtippett/a43cb6e1b325f2fcf401480986a2f1e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void OBSBasic::EditSceneName() | |
{ | |
QListWidgetItem *item = ui->scenes->currentItem(); | |
Qt::ItemFlags flags = item->flags(); | |
QListWidgetItem *item = ui->scenes->currentItem(); | |
Qt::ItemFlags flags = item->flags(); | |
+ QAction *renameScene = new QAction(ui->scenesDock); | |
+ | |
+ foreach (const QKeySequence &shortcut, renameScene->shortcuts()) { | |
+ blog(LOG_INFO, "EditSceneName hotkeys (4251): %s",shortcut.toString().toLocal8Bit( | |
).data()); | |
+ } | |
+ | |
+ renameScene->setShortcut(QKeySequence()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment