Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
621b017c by wurstsalat at 2022-08-10T17:17:40+02:00
chore: ChatStack: Add back separator margins

- - - - -


1 changed file:

- gajim/gtk/chat_stack.py


Changes:

=====================================
gajim/gtk/chat_stack.py
=====================================
@@ -75,9 +75,15 @@ def __init__(self):
 
         box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
         box.add(self._chat_banner)
-        box.add(Gtk.Separator())
+        separator1 = Gtk.Separator()
+        separator1.set_margin_start(6)
+        separator1.set_margin_end(6)
+        box.add(separator1)
         box.add(self._control_stack)
-        box.add(Gtk.Separator())
+        separator2 = Gtk.Separator()
+        separator2.set_margin_start(6)
+        separator2.set_margin_end(6)
+        box.add(separator2)
         box.add(self._message_action_box)
 
         dnd_icon = Gtk.Image.new_from_icon_name(



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/621b017c0ae29a8101d9b7a41ac3f875f426097c

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/621b017c0ae29a8101d9b7a41ac3f875f426097c
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
Commits@gajim.org
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to