Skip to content
Snippets Groups Projects
Commit 74a085aa authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

fix: Row name: Align label correctly

parent b403484a
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,7 @@ def create_name_widget(name: str, is_self: bool) -> Gtk.Label:
label = Gtk.Label()
label.set_selectable(True)
label.set_ellipsize(Pango.EllipsizeMode.END)
label.set_valign(Gtk.Align.END)
label.get_style_context().add_class('conversation-nickname')
label.set_markup(GLib.markup_escape_text(name))
......
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