From 4593e2bbe5a4afad853b4cc403a46675c199a0f5 Mon Sep 17 00:00:00 2001 From: Rafael Ortiz Date: Fri, 27 Jul 2012 23:17:55 +0000 Subject: some style fixes --- (limited to 'toolitem.py') diff --git a/toolitem.py b/toolitem.py index 75206e5..3ed87b2 100644 --- a/toolitem.py +++ b/toolitem.py @@ -28,8 +28,10 @@ class ToolWidget(Gtk.ToolItem): self.label = Gtk.Label(label_text) self._box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL) - if self.label: self._box.pack_start(self.label, True, True, 5) - if self.wid: self._box.pack_start(self.wid, True, True, 5) + if self.label: + self._box.pack_start(self.label, True, True, 5) + if self.wid: + self._box.pack_start(self.wid, True, True, 5) self.add(self._box) - self.show_all() \ No newline at end of file + self.show_all() -- cgit v0.9.1