Changeset 404:4cfe27687104
- Timestamp:
- 12/27/12 08:34:28 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/statusbar.py
r300 r404 147 147 148 148 if self._noGoReason is None: 149 rating = "%. 0f%%" % (self._rating,)149 rating = "%.1f%%" % (self._rating,) 150 150 else: 151 151 rating = '<span foreground="red">' + self._noGoReason + '</span>' -
src/mlx/gui/statusicon.py
r300 r404 158 158 159 159 if self._noGoReason is None: 160 rating = "%. 0f%%" % (self._rating,)160 rating = "%.1f%%" % (self._rating,) 161 161 else: 162 162 rating = self._noGoReason
Note:
See TracChangeset
for help on using the changeset viewer.