Skip to content

Commit

Permalink
Arch: small fix in Arch git dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Nov 25, 2015
1 parent a5852dd commit 14a771b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Mod/Arch/ArchServer.py
Expand Up @@ -114,7 +114,8 @@ def __init__(self):
self.label = QtGui.QLabel(self.groupBox)
self.label.setObjectName("label")
self.vl3.addWidget(self.label)
self.horizontalLayout = QtGui.QHBoxLayout(self.vl3)
self.horizontalLayout = QtGui.QHBoxLayout()
self.vl3.addLayout(self.horizontalLayout)
self.horizontalLayout.setObjectName("horizontalLayout")
self.radioButton_2 = QtGui.QRadioButton(self.groupBox)
self.radioButton_2.setChecked(True)
Expand Down

0 comments on commit 14a771b

Please sign in to comment.