mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-25 23:32:30 +00:00
some minor changes
This commit is contained in:
parent
4089e22bc5
commit
158268bac0
1 changed files with 4 additions and 1 deletions
|
@ -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 a new issue