1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-09-28 02:25:35 +02:00

more UI changes

This commit is contained in:
Jfreegman 2014-09-25 15:17:03 -04:00
parent 2e65ee3609
commit cee9e624b8
2 changed files with 5 additions and 5 deletions

View File

@ -156,12 +156,12 @@ void line_info_add(ToxWindow *self, char *timestr, char *name1, char *name2, uin
switch (type) { switch (type) {
case IN_ACTION: case IN_ACTION:
case OUT_ACTION: case OUT_ACTION:
len += 3; len += 5;
break; break;
case IN_MSG: case IN_MSG:
case OUT_MSG: case OUT_MSG:
len += 2; len += 6;
break; break;
case CONNECTION: case CONNECTION:
@ -309,7 +309,7 @@ void line_info_print(ToxWindow *self)
nameclr = CYAN; nameclr = CYAN;
wattron(win, COLOR_PAIR(nameclr)); wattron(win, COLOR_PAIR(nameclr));
wprintw(win, "%s: ", line->name1); wprintw(win, "--- %s: ", line->name1);
wattroff(win, COLOR_PAIR(nameclr)); wattroff(win, COLOR_PAIR(nameclr));
if (line->msg[0] == '>') if (line->msg[0] == '>')
@ -342,7 +342,7 @@ void line_info_print(ToxWindow *self)
wattroff(win, COLOR_PAIR(BLUE)); wattroff(win, COLOR_PAIR(BLUE));
wattron(win, COLOR_PAIR(YELLOW)); wattron(win, COLOR_PAIR(YELLOW));
wprintw(win, "* %s %s", line->name1, line->msg); wprintw(win, "-*- %s %s", line->name1, line->msg);
wattroff(win, COLOR_PAIR(YELLOW)); wattroff(win, COLOR_PAIR(YELLOW));
if (type == OUT_ACTION && timed_out(line->timestamp, get_unix_time(), NOREAD_FLAG_TIMEOUT)) { if (type == OUT_ACTION && timed_out(line->timestamp, get_unix_time(), NOREAD_FLAG_TIMEOUT)) {

View File

@ -87,7 +87,7 @@ void get_time_str(char *buf, int bufsize)
return; return;
} }
const char *t = user_settings->time == TIME_12 ? "%-I:%M:%S " : "%H:%M:%S "; const char *t = user_settings->time == TIME_12 ? "%I:%M:%S " : "%H:%M:%S ";
strftime(buf, bufsize, t, get_time()); strftime(buf, bufsize, t, get_time());
} }