Skip to content

Commit

Permalink
Arch: Fixed small bug in Wall task panel
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jun 9, 2019
1 parent d0f0cec commit d818a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Arch/ArchWall.py
Expand Up @@ -372,7 +372,7 @@ def taskbox(self):
value3 = QtGui.QComboBox()
items = [translate("Arch","Center"),translate("Arch","Left"),translate("Arch","Right")]
value3.addItems(items)
value3.setCurrentIndex(items.index(self.Align))
value3.setCurrentIndex(["Center","Left","Right"].index(self.Align))
grid.addWidget(label3,4,0,1,1)
grid.addWidget(value3,4,1,1,1)

Expand Down

0 comments on commit d818a96

Please sign in to comment.