Ignore Ctrl/Shift/Alt modifiers while click on the "Found in Dictionaries" pane if Dictionaries bar is hidden

This commit is contained in:
Abs62 2018-02-08 18:01:39 +03:00
parent 65237ab22c
commit 740637d98a

View file

@ -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 )
{