Skip to content
Snippets Groups Projects
Commit efb41f1d authored by Dicson's avatar Dicson
Browse files

ClickableNicknamesPlugin. Do not add 'gc_refer_to_nick_char' after nick if...

ClickableNicknamesPlugin. Do not add 'gc_refer_to_nick_char' after nick if nick pasting not in start line
parent f49e9cbc
No related branches found
No related tags found
No related merge requests found
......@@ -126,8 +126,10 @@ class Base(object):
self.chat_control.room_jid)
if nick not in nicks:
return
nick = nick + gajim.config.get('gc_refer_to_nick_char') + ' '
message_buffer = self.chat_control.msg_textview.get_buffer()
if message_buffer.get_char_count() < 2:
nick = nick + gajim.config.get('gc_refer_to_nick_char')
nick = nick + ' '
message_buffer.insert_at_cursor(nick)
self.chat_control.msg_textview.grab_focus()
......
[info]
name: Clickable Nicknames
short_name: clickable_nicknames
version: 0.2.2
version: 0.2.3
description: Clickable nicknames in the conversation textview.
authors: Denis Fomin <fominde@gmail.com>
homepage: http://trac-plugins.gajim.org/wiki/ClickableNicknamesPlugin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment