[Touch-packages] [Bug 1783162] Re: mvwin doesn't work if window is created with zero coordinates.

2018-07-23 Thread Phillip Deremer
** Summary changed: - mvwin doesn't work if window is window is created with zero coordinates. + mvwin doesn't work if window is created with zero coordinates. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to ncurses in Ubunt

[Touch-packages] [Bug 1783162] [NEW] mvwin doesn't work if window is created with zero coordinates.

2018-07-23 Thread Phillip Deremer
Public bug reported: Using the following code I cant move the window with mvwin #include #include void quit(); int main(int argc, char** argv) { initscr(); atexit(quit); curs_set(0); noecho(); WINDOW *win = newwin(0,0,0,0)