From cd99526b5d1c8b1130ac1ba87e21f96c621b1bdc Mon Sep 17 00:00:00 2001
From: Nicholas McCarthy <namccart@gmail.com>
Date: Sun, 7 Jul 2013 18:08:20 -0400
Subject: grc: add bus ports

Bus ports allow ganging together of block input or output ports into
a single display item for connection to other bus ports.
---
 grc/gui/Element.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'grc/gui/Element.py')

diff --git a/grc/gui/Element.py b/grc/gui/Element.py
index eac59d88eb..cd97a3fb21 100644
--- a/grc/gui/Element.py
+++ b/grc/gui/Element.py
@@ -69,7 +69,7 @@ class Element(object):
 		Create labels (if applicable) and call on all children.
 		Call this base method before creating labels in the element.
 		"""
-		for child in self.get_children(): child.create_labels()
+		for child in self.get_children():child.create_labels()
 
 	def create_shapes(self):
 		"""
@@ -89,6 +89,7 @@ class Element(object):
 		    border_color: the color for lines and rectangle borders
 		    bg_color: the color for the inside of the rectangle
 		"""
+		
 		X,Y = self.get_coordinate()
 		for (rX,rY),(W,H) in self._areas_list:
 			aX = X + rX
-- 
cgit v1.2.3