summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-03-06 22:34:41 +0100
committermathieui <mathieui@mathieui.net>2013-03-06 22:34:41 +0100
commit3f71405efd5910a1e150afa2c46f1f001b39dc18 (patch)
treed1b3a31fed87f42b09b86cc2860e197241b83873 /src/windows.py
parente67c1643b91f0f1f00bce516b332385cc1952d35 (diff)
downloadpoezio-3f71405efd5910a1e150afa2c46f1f001b39dc18.tar.gz
poezio-3f71405efd5910a1e150afa2c46f1f001b39dc18.tar.bz2
poezio-3f71405efd5910a1e150afa2c46f1f001b39dc18.tar.xz
poezio-3f71405efd5910a1e150afa2c46f1f001b39dc18.zip
Add a CHAR_NEW_TEXT_SEPARATOR theming option
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/windows.py b/src/windows.py
index f759fa1b..cb96fa19 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -945,7 +945,11 @@ class TextWin(Win):
self._refresh()
def write_line_separator(self, y):
- self.addnstr(y, 0, '- '*(self.width//2-1)+'-', self.width, to_curses_attr(get_theme().COLOR_NEW_TEXT_SEPARATOR))
+ char = get_theme().CHAR_NEW_TEXT_SEPARATOR
+ self.addnstr(y, 0,
+ char*(self.width//len(char)),
+ self.width,
+ to_curses_attr(get_theme().COLOR_NEW_TEXT_SEPARATOR))
def write_text(self, y, x, txt):
"""