diff --git a/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java b/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java index 93c494b488..1642cfb9da 100644 --- a/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java @@ -222,7 +222,7 @@ public class HelpActivity extends OsmandActionBarActivity { convertView = LayoutInflater.from(parent.getContext()).inflate( R.layout.help_to_improve_item, parent, false); TextView feedbackButton = (TextView) convertView.findViewById(R.id.feedbackButton); - Drawable pollIcon = ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_message); + Drawable pollIcon = ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_big_poll); feedbackButton.setCompoundDrawablesWithIntrinsicBounds(null, pollIcon, null, null); feedbackButton.setOnClickListener(new View.OnClickListener() { @Override @@ -233,7 +233,7 @@ public class HelpActivity extends OsmandActionBarActivity { }); TextView contactUsButton = (TextView) convertView.findViewById(R.id.contactUsButton); Drawable contactUsIcon = - ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_message); + ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_big_feedback); contactUsButton.setCompoundDrawablesWithIntrinsicBounds(null, contactUsIcon, null, null); final String email = ctx.getString(R.string.support_email);