From 6ec2044462faf0e6c5271edbfffd5d39c3c7db84 Mon Sep 17 00:00:00 2001 From: Taiko2k Date: Tue, 25 Jan 2022 14:44:57 +1300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3089d36..c07da48 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,8 @@ Most basic layout is a [Box](https://docs.gtk.org/gtk4/class.Box.html). Lets add a box to the window! (Where the code comment "*things will go here*" is above) ```python -self.box = Gtk.Box() -self.set_child(self.box) +self.box1 = Gtk.Box() +self.set_child(self.box1) ``` We make a new box, and attach it to the window. Simple. If you run the app now you'll see no difference, because there's nothing in the layout yet either.