mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-07 10:30:14 -05:00
Fix safe slinger button
This commit is contained in:
parent
57a26a6cb3
commit
418f0970ab
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user