Skip to content

Commit

Permalink
Fix toolbar button
Browse files Browse the repository at this point in the history
  • Loading branch information
CJCombrink committed Nov 24, 2023
1 parent 3d470a3 commit 997ffba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/outputpane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ OutputPane::OutputPane( SpellingMistakesModel* model, QObject* parent )
connect( d->buttonSuggest, &QAbstractButton::clicked, SpellCheckerCore::instance(), &SpellCheckerCore::giveSuggestionsForWordUnderCursor );

d->buttonIgnore = new QToolButton();
d->buttonIgnore->setIcon( Utils::Icons::MINUS.icon() );
d->buttonIgnore->setIcon( Utils::Icons::MINUS_TOOLBAR.icon() );
d->buttonIgnore->setToolTip( tr( "Ignore the word" ) );
d->toolbarWidgets.push_back( d->buttonIgnore );
connect( d->buttonIgnore, &QAbstractButton::clicked, SpellCheckerCore::instance(), &SpellCheckerCore::ignoreWordUnderCursor );
Expand Down

0 comments on commit 997ffba

Please sign in to comment.