X-Git-Url: https://jfr.im/git/irc/weechat/qweechat.git/blobdiff_plain/67ae32043879daf9ae157c7c0a9cdee7d267bd47..f4780bac89a15d233c67a0b36f996cfe978ca1ef:/src/qweechat/buffer.py?ds=sidebyside diff --git a/src/qweechat/buffer.py b/src/qweechat/buffer.py index fc12d09..79a0e29 100644 --- a/src/qweechat/buffer.py +++ b/src/qweechat/buffer.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # -# Copyright (C) 2011 Sebastien Helleu +# Copyright (C) 2011-2012 Sebastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # @@ -28,6 +28,7 @@ QtCore = qt_compat.import_module('QtCore') QtGui = qt_compat.import_module('QtGui') from chat import ChatTextEdit from input import InputLineEdit +import weechat.color as color class GenericListWidget(QtGui.QListWidget): @@ -161,7 +162,7 @@ class Buffer(QtCore.QObject): def update_title(self): """Update title.""" try: - self.widget.set_title(self.data['title']) + self.widget.set_title(color.remove(self.data['title'].decode('utf-8'))) except: self.widget.set_title(None)