Skip to content

Commit

Permalink
fix View > Files shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Dec 25, 2024
1 parent 04b07b6 commit 0798fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ void MainWindow::setupAndConnectDocks()

m_filesDock = new FilesDock(this);
m_filesDock->hide();
m_filesDock->toggleViewAction()->setShortcuts({QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_9), QKeySequence(Qt::Key_F10)});
m_filesDock->toggleViewAction()->setShortcuts({QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_4), QKeySequence(Qt::Key_F10)});
ui->menuView->addAction(m_filesDock->toggleViewAction());
// connect(m_filesDock, SIGNAL(itemActivated(QString)), this, SLOT(open(QString)));
connect(m_filesDock->toggleViewAction(), SIGNAL(triggered(bool)), this,
Expand Down

0 comments on commit 0798fd4

Please sign in to comment.