assume_default_colors(theme.default_fg, theme.default_bg);
if (top.win) {
- mvwin(top.win, top.begy, top.begx);
wresize(top.win, top.lines, top.cols);
+ mvwin(top.win, top.begy, top.begx);
- mvwin(sb.win, sb.begy, sb.begx);
wresize(sb.win, sb.lines, sb.cols);
+ mvwin(sb.win, sb.begy, sb.begx);
- mvwin(sep.win, sep.begy, sep.begx);
wresize(sep.win, sep.lines, sep.cols);
+ mvwin(sep.win, sep.begy, sep.begx);
- mvwin(bot.win, bot.begy, bot.begx);
wresize(bot.win, bot.lines, bot.cols);
+ mvwin(bot.win, bot.begy, bot.begx);
- mvwin(in.win, in.begy, in.begx);
wresize(in.win, in.lines, in.cols);
+ mvwin(in.win, in.begy, in.begx);
} else {
sep.win = newwin(sep.lines, sep.cols, sep.begy, sep.begx);
top.win = newwin(top.lines, top.cols, top.begy, top.begx);
theme_next(&theme);
else
theme_prev(&theme);
- /* This seems to be needed twice, why? */
- com_refresh();
com_refresh();
PARA_NOTICE_LOG("new theme: %s\n", theme.name);
}