Window: keyPressEvent: don't show empty shortcuts
这个提交包含在:
父节点
98cff50c41
当前提交
adfb065358
@ -381,7 +381,10 @@ void Window::keyPressEvent(QKeyEvent *event)
|
||||
|
||||
for(EntryPushButton *button : buttonsInGrid)
|
||||
{
|
||||
button->showShortcut();
|
||||
if(!button->getEntryConfig().key.isEmpty())
|
||||
{
|
||||
button->showShortcut();
|
||||
}
|
||||
}
|
||||
|
||||
QKeySequence seq(event->key());
|
||||
|
正在加载...
在新工单中引用
屏蔽一个用户