Fix star, flag icons in context menu

This commit is contained in:
Alexey Kulish 2015-11-18 18:09:51 +03:00
parent a7a3cc733e
commit 285a34f1ca
2 changed files with 2 additions and 9 deletions

View file

@ -36,7 +36,6 @@ import net.osmand.plus.IconsCache;
import net.osmand.plus.OsmandApplication;
import net.osmand.plus.OsmandSettings;
import net.osmand.plus.R;
import net.osmand.plus.TargetPointsHelper.TargetPoint;
import net.osmand.plus.activities.MapActivity;
import net.osmand.plus.dashboard.DashLocationFragment;
import net.osmand.plus.download.DownloadIndexesThread.DownloadEvents;
@ -361,14 +360,8 @@ public class MapContextMenuFragment extends Fragment implements DownloadEvents {
});
final ImageButton buttonWaypoint = (ImageButton) view.findViewById(R.id.context_menu_route_button);
// Correct use of destination vs. waypoit icon on button:
if (getMyApplication().getTargetPointsHelper().getPointToNavigate() == null) {
buttonWaypoint.setImageDrawable(iconsCache.getIcon(R.drawable.ic_action_flag_dark,
buttonWaypoint.setImageDrawable(iconsCache.getIcon(R.drawable.map_action_flag_dark,
light ? R.color.icon_color : R.color.dashboard_subheader_text_dark));
} else {
buttonWaypoint.setImageDrawable(iconsCache.getIcon(R.drawable.map_action_waypoints,
light ? R.color.icon_color : R.color.dashboard_subheader_text_dark));
}
buttonWaypoint.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

View file

@ -257,7 +257,7 @@ public abstract class MenuController extends BaseMenuController {
public Drawable getSecondLineTypeIcon() { return null; }
public int getFavActionIconId() { return R.drawable.ic_action_fav_dark; }
public int getFavActionIconId() { return R.drawable.map_action_fav_dark; }
public String getTypeStr() { return ""; }