Re: curses: Visible cursor not set with wmove

2016-11-02 Thread Brett Lymn
On Fri, Sep 30, 2016 at 05:54:30PM +0200, Carsten Kunze wrote: > > in an application I use two non-overlapping windows which fill the whole > screen. Normally I hide the cursor (curs_set(0)), but for inputs I set > curs_set(1). But the cursor does stay in stdscr position 0,0. If I use >

curses: Visible cursor not set with wmove

2016-09-30 Thread Carsten Kunze
Hello, in an application I use two non-overlapping windows which fill the whole screen. Normally I hide the cursor (curs_set(0)), but for inputs I set curs_set(1). But the cursor does stay in stdscr position 0,0. If I use move() instead of wmove(), the cursor is positioned correctly. Also