InputText clipboard: disable Paste if empty

This commit is contained in:
hius07
2022-01-24 13:36:20 +02:00
committed by poire-z
parent 0cdbe91e2a
commit 2e49b780bd

View File

@@ -237,11 +237,10 @@ if Device:isTouchDevice() or Device:hasDPad() then
},
{
text = _("Paste"),
enabled = not is_clipboard_empty,
callback = function()
if not is_clipboard_empty then
UIManager:close(clipboard_dialog)
self:addChars(clipboard_value)
end
UIManager:close(clipboard_dialog)
self:addChars(clipboard_value)
end,
},
},