mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +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):
|
def _draw_actions(self):
|
||||||
selected = self.active_zone == ZONE.ACTIONS
|
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.action_input.render(
|
||||||
self.stdscr, self.rows - 2, width=self.cols,
|
self.stdscr, self.rows - 2, width=self.cols,
|
||||||
active=selected, focus=True, col=self.cols - 22,
|
active=selected, focus=True, col=self.cols - 22,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue