fix logic
This commit is contained in:
parent
67c1816d01
commit
5099ae35bb
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ class ConversationTextview:
|
|||
if tags: # we clicked on sth special (it can be status message too)
|
||||
for tag in tags:
|
||||
tag_name = tag.get_property('name')
|
||||
if tag_name is not None and 'url' in tag_name or 'mail' in tag_name:
|
||||
if tag_name is not None and tag_name in ('url', 'mail'):
|
||||
return True # we block normal context menu
|
||||
|
||||
# we check if sth was selected and if it was we assign
|
||||
|
|
Loading…
Add table
Reference in a new issue