From 3d8409558735631a387a9858835746fc2cb60eb7 Mon Sep 17 00:00:00 2001 From: eshanized Date: Sat, 21 Dec 2024 01:40:06 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=20refactor(=5Fremove):=203=3D>=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- usr/share/snigdhaos-welcome/ui/MessageDialog.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/usr/share/snigdhaos-welcome/ui/MessageDialog.py b/usr/share/snigdhaos-welcome/ui/MessageDialog.py index eff935c..ec09eea 100644 --- a/usr/share/snigdhaos-welcome/ui/MessageDialog.py +++ b/usr/share/snigdhaos-welcome/ui/MessageDialog.py @@ -29,11 +29,7 @@ class MessageDialog(Gtk.Dialog): headerbar.set_title(title) headerbar.set_show_close_button(True) - headerbar.pack_start( - Gtk.Image().new_from_pixbuf( - GdkPixbuf.Pixbuf().new_from_file_at_size(os.path.join(base_dir, "images/snigdhaos-icon.png"), 24, 24) - ) - ) + headerbar.pack_start(Gtk.Image().new_from_pixbuf(GdkPixbuf.Pixbuf().new_from_file_at_size(os.path.join(base_dir, "images/snigdhaos-icon.png"), 24, 24))) self.set_titlebar(headerbar)