Skip to content

Commit

Permalink
agregado bytes a la captura de los datos del adjunto
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardKessler committed Oct 17, 2022
1 parent 6e36b84 commit 886d7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/appModules/whatsapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def script_chatName(self, gesture):
def script_viewText(self, gesture):
fc = api.getFocusObject()
if fc.UIAAutomationId == 'BubbleListItem':
text = '\n'.join([item.name for item in fc.children if item.UIAAutomationId == 'TextBlock' or item.UIAAutomationId == 'NameTextBlock' or search(r"\d+\s[KM]B\,\s", item.name)])
text = '\n'.join([item.name for item in fc.children if item.UIAAutomationId == 'TextBlock' or item.UIAAutomationId == 'NameTextBlock' or search(r"\d+\s(KB|MB|bytes)\,\s", item.name)])
browseableMessage(text, _('Texto del mensaje'))

@script(
Expand Down

0 comments on commit 886d7e7

Please sign in to comment.