mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-10 05:03:44 +01:00
some minor changes
This commit is contained in:
parent
4089e22bc5
commit
158268bac0
@ -91,7 +91,10 @@ public class SendBottomSheetDialog extends BottomSheetDialogFragment {
|
|||||||
pasteAddressImageButton.setOnClickListener(view1 -> {
|
pasteAddressImageButton.setOnClickListener(view1 -> {
|
||||||
Context ctx = getContext();
|
Context ctx = getContext();
|
||||||
if(ctx != null) {
|
if(ctx != null) {
|
||||||
pasteAddress(Helper.getClipBoardText(getContext()));
|
String clipboard = Helper.getClipBoardText(ctx);
|
||||||
|
if(clipboard != null) {
|
||||||
|
pasteAddress(clipboard);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user