+- Now that the smooth scrolling pixel-skip can be configured, probably adapt
+ the 65543 ATC sequence to support a parameter. Currently only the -2
+ command line option or config.h allow to change it.
- Many operations are the equivalent of newline or scroll if the end of the
scrolling buffer or bottom are reached. Unify those in a function or two as
possible.
*/
st->smoothscroll_offset = FONT_HEIGHT + cfg_leading;
st->cursor_disabled_ticks =
- (int)(st->smoothscroll_offset * 1.5);
+ (int)((st->smoothscroll_offset /
+ cfg_smoothscrollskip) * 1.5);
state_update_cursor(st);
}
} else {