mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
Ignore Ctrl/Shift/Alt modifiers while click on the "Found in Dictionaries" pane if Dictionaries bar is hidden
This commit is contained in:
parent
65237ab22c
commit
740637d98a
|
@ -348,6 +348,9 @@ void DictionaryBar::actionWasTriggered( QAction * action )
|
|||
|
||||
void DictionaryBar::dictsPaneClicked( const QString & id )
|
||||
{
|
||||
if ( !isVisible() )
|
||||
return;
|
||||
|
||||
for( QList< QAction * >::iterator i = dictActions.begin();
|
||||
i != dictActions.end(); ++i )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue