Move cursor to specific point on screen using ncurses c++ (Linux) -
i'd move cursor specific point on screen, can move logical point, cursor stay static on position.
how work in c++ using ncurses ?
obs.: i've tried use move(y, x); doesn't works
from move(y,x) man page:
this routine not move physical cursor of terminal until refresh called.
did call refresh() after calling move(y,x)
Comments
Post a Comment