add missing NOT
This commit is contained in:
parent
9627824c79
commit
2952459644
1 changed files with 1 additions and 1 deletions
|
@ -391,7 +391,7 @@ public class MapInfoLayer extends OsmandMapLayer {
|
|||
int textColor = nightMode ? view.getResources().getColor(R.color.widgettext_night):Color.BLACK;
|
||||
// Night shadowColor always use widgettext_shadow_night, same as widget background color for non-transparent night skin (from box_night_free_simple.9.png)
|
||||
int textShadowColor = nightMode? view.getResources().getColor(R.color.widgettext_shadow_night) : Color.WHITE;
|
||||
if (transparent && !nightMode) {
|
||||
if (!transparent && !nightMode) {
|
||||
textShadowColor = Color.TRANSPARENT;
|
||||
}
|
||||
int boxTop;
|
||||
|
|
Loading…
Reference in a new issue