Skip to content

Commit

Permalink
corrected typo in GetLine
Browse files Browse the repository at this point in the history
  • Loading branch information
hstehling committed Jul 8, 2015
1 parent 0d23eaf commit d99ac51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/rhinoscript/userinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def GetLine(mode=0, point=None, message1=None, message2=None, message3=None):
gl.SetFirstPoint(point)
if message1: gl.FirstPointPrompt = message1
if message2: gl.MidPointPrompt = message2
if message3: gl.SecondPointPromp = message3
if message3: gl.SecondPointPrompt = message3
rc, line = gl.Get()
if rc==Rhino.Commands.Result.Success: return line.From, line.To

Expand Down

0 comments on commit d99ac51

Please sign in to comment.