From 07e75ba08d0c00ecef5565a1febb66dde53de3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alperen=20=C4=B0sa?= <66299502+Afacanc38@users.noreply.github.com> Date: Mon, 30 Aug 2021 15:30:15 +0300 Subject: [PATCH] fixed "'MyWindow' object has no attribute 'box'" --- handy/2-headerbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handy/2-headerbar.py b/handy/2-headerbar.py index c825ef0..634d735 100644 --- a/handy/2-headerbar.py +++ b/handy/2-headerbar.py @@ -15,7 +15,7 @@ class MyWindow(Handy.Window): # Box self.winbox = Gtk.Box(spacing=6, orientation=Gtk.Orientation.VERTICAL) - self.handle.add(self.box) + self.handle.add(self.winbox) # Headerbar self.hb = Handy.HeaderBar()