Skip to content
This repository was archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #9759 from NejcZdovc/hotfix/#9758-findbar
Browse files Browse the repository at this point in the history
Fixes theme text color for find bar
  • Loading branch information
bsclifton authored Jun 30, 2017
2 parents 8fde201 + 8432d6c commit 6f61f13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/renderer/components/main/findbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ class FindBar extends React.Component {
if (this.props.backgroundColor) {
findBarStyle = {
background: this.props.backgroundColor,
color: this.textColor
color: this.props.textColor
}
findBarTextStyle = {
color: this.textColor
color: this.props.textColor
}
}

Expand Down

0 comments on commit 6f61f13

Please sign in to comment.