diff --git a/android/res/layout/fragment_prefs_help.xml b/android/res/layout/fragment_prefs_help.xml index 48e9b96f49..df40755cb7 100644 --- a/android/res/layout/fragment_prefs_help.xml +++ b/android/res/layout/fragment_prefs_help.xml @@ -34,9 +34,6 @@ android:layout_height="wrap_content" android:padding="@dimen/margin_base" android:text="@string/feedback" - android:drawableLeft="@drawable/ic_feedback" - android:drawableStart="@drawable/ic_feedback" - android:drawablePadding="@dimen/margin_base" android:textAppearance="@style/MwmTextAppearance.Button" android:background="?clickableBackground"/> diff --git a/android/src/com/mapswithme/maps/settings/HelpFragment.java b/android/src/com/mapswithme/maps/settings/HelpFragment.java index de640835d3..2a6bc78853 100644 --- a/android/src/com/mapswithme/maps/settings/HelpFragment.java +++ b/android/src/com/mapswithme/maps/settings/HelpFragment.java @@ -17,7 +17,6 @@ import com.mapswithme.maps.widget.BaseShadowController; import com.mapswithme.maps.widget.ObservableWebView; import com.mapswithme.maps.widget.WebViewShadowController; import com.mapswithme.util.Constants; -import com.mapswithme.util.Graphics; import com.mapswithme.util.Utils; import com.mapswithme.util.statistics.AlohaHelper; import com.mapswithme.util.statistics.Statistics; @@ -56,8 +55,6 @@ public class HelpFragment extends BaseSettingsFragment }; TextView feedback = (TextView)mFrame.findViewById(R.id.feedback); - Graphics.tint(feedback); - feedback.setOnClickListener(new View.OnClickListener() { @Override