add missing NOT

This commit is contained in:
sonora 2015-02-01 18:06:26 +01:00
parent 9627824c79
commit 2952459644

View file

@ -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;