Skip to content

Commit

Permalink
Use BULLET instead of DIAMOND
Browse files Browse the repository at this point in the history
BULLET is better handled than DIAMOND by many fonts
  • Loading branch information
pogman-code committed Dec 15, 2015
1 parent 37f5311 commit dac05db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transmission-remote-cli
Original file line number Diff line number Diff line change
Expand Up @@ -1944,7 +1944,7 @@ class Interface(object):
curses.color_pair(self.colors.id('upload_rate')) + curses.A_BOLD + curses.A_REVERSE)

def draw_ratio(self, torrent, ypos):
self.pad.addch(ypos+1, self.width-self.rateUpload_width-1, curses.ACS_DIAMOND,
self.pad.addch(ypos+1, self.width-self.rateUpload_width-1, curses.ACS_BULLET,
(0, curses.A_BOLD)[torrent['uploadRatio'] < 1 and torrent['uploadRatio'] >= 0])
self.pad.addstr(ypos+1, self.width-self.rateUpload_width,
num2str(torrent['uploadRatio'], '%.02f').rjust(self.rateUpload_width),
Expand Down

0 comments on commit dac05db

Please sign in to comment.