Skip to content

Commit

Permalink
fixed background color of the selected row in the output pane.
Browse files Browse the repository at this point in the history
- Background color now same as selection color of the theme.
  • Loading branch information
CJCombrink committed May 29, 2017
1 parent 630daec commit c23ea56
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions outputpane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ QWidget *OutputPaneDelegate::createEditor(QWidget *parent, const QStyleOptionVie
QWidget* widget = new QWidget(parent);
QHBoxLayout* layout = new QHBoxLayout();
widget->setLayout(layout);
widget->setStyleSheet("background-color:palette(highlight)");
layout->setMargin(0);
Word word = d->wordSelected;
QStringList suggestions = index.data().toString().split(QLatin1String(", "));
Expand Down

0 comments on commit c23ea56

Please sign in to comment.