Skip to content

Commit

Permalink
+ fixes #1848: Radius of circle given in degrees
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Dec 16, 2014
1 parent 171a8cf commit f37a752
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Draft/DraftGui.py
Expand Up @@ -837,7 +837,7 @@ def radiusUi(self):
self.hideXYZ()
self.labelRadius.setText(translate("draft", "Radius"))
self.labelRadius.show()
self.radiusValue.setText(self.AFORMAT % 0)
self.radiusValue.setText(self.FORMAT % 0)
self.radiusValue.show()

def textUi(self):
Expand Down
1 change: 1 addition & 0 deletions src/Mod/Draft/DraftTools.py
Expand Up @@ -1127,6 +1127,7 @@ def action(self,arg):
self.drawArc()
else:
self.ui.labelRadius.setText("Start angle")
self.ui.radiusValue.setText(self.ui.AFORMAT % 0)
self.linetrack.p1(self.center)
self.linetrack.on()
self.step = 2
Expand Down

0 comments on commit f37a752

Please sign in to comment.