Remove alignment kwarg (left out from previous commit).

This commit is contained in:
Tony S Yu
2013-05-26 18:28:12 -05:00
parent a49502a7b1
commit d183cce16c
+1 -1
View File
@@ -236,7 +236,7 @@ class ComboBox(BaseWidget):
self.layout = QtGui.QHBoxLayout(self)
self.layout.addWidget(self.name_label)
self.layout.addWidget(self._combo_box, alignment=QtCore.Qt.AlignLeft)
self.layout.addWidget(self._combo_box)
self._combo_box.currentIndexChanged.connect(self._value_changed)
# self.connect(self._combo_box,