mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
[Console] Fix char encoding in preferences
This commit is contained in:
parent
6e81a11d8d
commit
38961d4253
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class Preferences(BaseMode, PopupsHandler):
|
|||
|
||||
def _draw_actions(self):
|
||||
selected = self.active_zone == ZONE.ACTIONS
|
||||
self.stdscr.hline(self.rows - 3, self.sidebar_width, '_', self.cols)
|
||||
self.stdscr.hline(self.rows - 3, self.sidebar_width, b'_', self.cols)
|
||||
self.action_input.render(
|
||||
self.stdscr, self.rows - 2, width=self.cols,
|
||||
active=selected, focus=True, col=self.cols - 22,
|
||||
|
|
Loading…
Add table
Reference in a new issue