Fix safe slinger button

This commit is contained in:
Dominik Schürmann 2014-10-25 02:41:20 +02:00
parent 57a26a6cb3
commit 418f0970ab

View File

@ -116,9 +116,11 @@ public class SafeSlingerActivity extends ActionBarActivity {
});
}
ImageView button = (ImageView) findViewById(R.id.safe_slinger_button_image);
button.setColorFilter(getResources().getColor(R.color.tertiary_text_light),
ImageView buttonIcon = (ImageView) findViewById(R.id.safe_slinger_button_image);
buttonIcon.setColorFilter(getResources().getColor(R.color.tertiary_text_light),
PorterDuff.Mode.SRC_IN);
ImageView button = (ImageView) findViewById(R.id.safe_slinger_button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {