Skip to content

Commit b6313bf

Browse files
committed
NowBarWeather: restore text colors on the fly.
Signed-off-by: DHD2280 <[email protected]>
1 parent 5e0aee2 commit b6313bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/it/dhd/oxygencustomizer/xposed/views/nowbar/NowBarWeather.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ public void setOptions(
184184
mTextColor = textColor;
185185
mBackgroundColor = backgroundColor;
186186
setBarBackground();
187-
mCity.setTextColor(mTextColor);
188-
mCondition.setTextColor(mTextColor);
187+
mCity.setTextColor(mCustomColors ? mTextColor : Color.WHITE);
188+
mCondition.setTextColor(mCustomColors ? mTextColor : Color.WHITE);
189189
}
190190

191191
}

0 commit comments

Comments
 (0)