From 8432d6c326198fe8374b2557084c837a7088df13 Mon Sep 17 00:00:00 2001 From: NejcZdovc Date: Wed, 28 Jun 2017 19:00:01 +0200 Subject: [PATCH] Fixes theme text color for find bar Resolves #9758 Auditors: @bsclifton Test Plan: - go to youtube.com - press cmd+f - text should be in white --- app/renderer/components/main/findbar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/renderer/components/main/findbar.js b/app/renderer/components/main/findbar.js index 65b23e0c34e..5bac14fb4d1 100644 --- a/app/renderer/components/main/findbar.js +++ b/app/renderer/components/main/findbar.js @@ -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 } }