fix char counter in single message dialog
This commit is contained in:
parent
8c6b68d35e
commit
a5027f847e
1 changed files with 1 additions and 1 deletions
|
@ -3124,7 +3124,7 @@ class SingleMessageWindow:
|
|||
|
||||
def update_char_counter(self, widget):
|
||||
characters_no = self.message_tv_buffer.get_char_count()
|
||||
self.count_chars_label.set_text(characters_no)
|
||||
self.count_chars_label.set_text(str(characters_no))
|
||||
|
||||
def send_single_message(self):
|
||||
if gajim.connections[self.account].connected <= 1:
|
||||
|
|
Loading…
Add table
Reference in a new issue