mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Fix build failure with Qt5.6 (#9382)
This commit is contained in:
parent
9c1a01ffe8
commit
74d96fc06f
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ void AutoTypeSelectDialog::buildActionMenu()
|
||||||
});
|
});
|
||||||
|
|
||||||
#if defined(Q_OS_WIN) || defined(Q_OS_MAC)
|
#if defined(Q_OS_WIN) || defined(Q_OS_MAC)
|
||||||
auto typeVirtualAction = new QAction(icons()->icon("auto-type"), tr("Use Virtual Keyboard"));
|
auto typeVirtualAction = new QAction(icons()->icon("auto-type"), tr("Use Virtual Keyboard"), nullptr);
|
||||||
m_actionMenu->insertAction(copyUsernameAction, typeVirtualAction);
|
m_actionMenu->insertAction(copyUsernameAction, typeVirtualAction);
|
||||||
typeVirtualAction->setShortcut(Qt::CTRL + Qt::Key_4);
|
typeVirtualAction->setShortcut(Qt::CTRL + Qt::Key_4);
|
||||||
connect(typeVirtualAction, &QAction::triggered, this, [&] {
|
connect(typeVirtualAction, &QAction::triggered, this, [&] {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue