bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

PANEL doesn't work with libncursesw5


From: Иван
Subject: PANEL doesn't work with libncursesw5
Date: Fri, 17 Aug 2018 22:02:52 +0300

Hello!
When libncursesw5-dev 6.0+20161126 is used and creates PANEL, most of
the window (that panel uses) just disappears.
But absolutely the same code that uses libncurses5-dev 6.0+20161126, works fine.
(debian 9)
For example:

int main()
{
    initscr();
    WINDOW *w = newwin(10, 20, 1, 1);
    box(w, 0, 0);
    PANEL *p = new_panel(w);
    update_panels();
    doupdate();
    getch();
    endwin();
}
With "-lncurses" the border will appear, but with "-lncursesw" - it
will not appear.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]