From 01ea3a0dc83beff1770f14e2c19fac182253785b Mon Sep 17 00:00:00 2001 From: jeffser Date: Sat, 18 May 2024 11:32:44 -0600 Subject: [PATCH] Fixed images margin --- src/window.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/window.py b/src/window.py index fd47ef9..e5469c0 100644 --- a/src/window.py +++ b/src/window.py @@ -133,6 +133,11 @@ class AlpacaWindow(Adw.ApplicationWindow): image = Gtk.Image.new_from_paintable(texture) image.set_size_request(360, 360) + image.set_margin_top(10) + image.set_margin_start(10) + image.set_margin_end(10) + image.set_hexpand(False) + image.set_css_classes(["flat"]) message_box.append(image) message_box.append(message_text)