[2011-02-27 16:04:26 -0500] Loui Chang:
> Rebuild won't do it. tig wants to create zero sized windows which
> newwin() doesn't allow anymore. We could patch it with some arbitrary
> size which kind of works,

The oping program (from liboping in [community]) was doing the same, so
I patched it like this:

        int width = 0;
        int height = 0;
        getmaxyx (stdscr, height, width);
        newwin (height, width, ..., ...);

In fact, it was already using height before, only width was 0.

-- 
Gaetan

Reply via email to