Window: keyPressEvent: don't show empty shortcuts
This commit is contained in:
parent
98cff50c41
commit
adfb065358
@ -381,7 +381,10 @@ void Window::keyPressEvent(QKeyEvent *event)
|
|||||||
|
|
||||||
for(EntryPushButton *button : buttonsInGrid)
|
for(EntryPushButton *button : buttonsInGrid)
|
||||||
{
|
{
|
||||||
button->showShortcut();
|
if(!button->getEntryConfig().key.isEmpty())
|
||||||
|
{
|
||||||
|
button->showShortcut();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QKeySequence seq(event->key());
|
QKeySequence seq(event->key());
|
||||||
|
Loading…
Reference in New Issue
Block a user