Skip to content

Commit

Permalink
Merge pull request #65 from atwardowski/patch-1
Browse files Browse the repository at this point in the history
More precision in align time tooltip
  • Loading branch information
blitzmann committed Mar 25, 2014
2 parents 2903c7e + 3a05abe commit d5e8938
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gui/builtinStatsViews/targetingMiscViewFull.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ def refreshPanel(self, fit):
label.SetToolTip(wx.ToolTip("Probe Size: %.3f" % (fit.probeSize or 0) ))
elif labelName == "labelFullWarpSpeed":
label.SetToolTip(wx.ToolTip("Max Warp Distance: %.1f AU" % fit.maxWarpDistance))
elif labelName == "labelFullAlignTime":
label.SetToolTip(wx.ToolTip("%.10f" % value))
else:
label.SetToolTip(wx.ToolTip("%.1f" % value))
else:
Expand Down

0 comments on commit d5e8938

Please sign in to comment.