Skip to content
Snippets Groups Projects
Commit 4681a4f6 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix Label

parent 51ae7b7c
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,7 @@ def __init__(self, account, text):
self.grid.attach(timestamp_widget, 2, 0, 1, 1)
self._label = SimpleLabel()
self._label.set_text(text)
self.grid.attach(self._label, 1, 0, 1, 1)
self.show_all()
......@@ -13,6 +13,7 @@
# along with Gajim. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk
from gi.repository import Pango
class SimpleLabel(Gtk.Label):
......
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