mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-24 01:32:16 -05:00
certify: checkbox fake click area tidbit
This commit is contained in:
parent
f703d55bca
commit
096f6e436d
@ -177,6 +177,16 @@ public class MultiCertifyKeyFragment extends LoaderFragment
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// UI tidbit: "my key" is the area above the checkbox, if the user clicks there he
|
||||||
|
// probably actually wants to hit the checkbox
|
||||||
|
View vMyKeyLabel = view.findViewById(R.id.label_my_key);
|
||||||
|
vMyKeyLabel.setOnClickListener(new OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
mUploadKeyCheckbox.performClick();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return root;
|
return root;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user