summaryrefslogtreecommitdiff
path: root/textscreen/txt_separator.c
diff options
context:
space:
mode:
Diffstat (limited to 'textscreen/txt_separator.c')
-rw-r--r--textscreen/txt_separator.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/textscreen/txt_separator.c b/textscreen/txt_separator.c
index f378a126..b430f831 100644
--- a/textscreen/txt_separator.c
+++ b/textscreen/txt_separator.c
@@ -42,14 +42,9 @@ static void TXT_SeparatorDrawer(txt_widget_t *widget, int w, int selected)
TXT_BGColor(TXT_COLOR_BLUE, 0);
TXT_FGColor(TXT_COLOR_BRIGHT_GREEN);
- TXT_PutChar(' ');
-
- for (i=0; i<strlen(separator->label); ++i)
- {
- TXT_PutChar(separator->label[i]);
- }
-
- TXT_PutChar(' ');
+ TXT_DrawString(" ");
+ TXT_DrawString(separator->label);
+ TXT_DrawString(" ");
}
}