Bill Gray

Results 224 comments of Bill Gray

(A warning : I don't expect to get back to PDCursesMod for a day or so after this post. Figured I'd best get this posted while still fresh in my...

Possible fix here : I'm beginning to wonder if this business of refreshing the preceding and following character is really needed. [The code in question](https://github.com/Bill-Gray/PDCursesMod/blob/d2f479a8301e0b9b6278a98524efaaaa5e3a1877/wingui/pdcdisp.c#L396) (lines 396-397 for the trailing...

I see what you mean. The behavior is identical in PDCursesMod and in PDCurses, so this may be of interest to @wmcbrine. In PDCurses*, you get 'XX' and a blank...

I'm assuming this is fixed (flickering was near the cursor, and presumably due to the characters before and after the cursor being redrawn, which they now aren't.) Re-open if you...

I think the following example may get us down to the underlying issue : ```c #include int main( void) { initscr(); refresh( ); WINDOW *win = newwin(0, 0, 0, 0);...

Okay, I think I see a bit more about what's going on here. In the code just above this, insert `nap(2000);` between the `wrefresh(win);` and `getch();` lines. In PDCurses*, you'll...

Well, we can do a release. The last one was on 2023 Nov 30; [many things have changed since then](https://github.com/Bill-Gray/PDCursesMod/blob/master/docs/HISTORY.md). We do have some issues I'd like to see fixed,...

I think we have two issues here, not one. First, there's the problem of handling what happens when you add a character at the lower right corner of the window...

[PDCurses uses 16 bits for characters](https://github.com/wmcbrine/PDCurses/blob/master/curses.h#L420). Ask it to render Unicode 0x1d11e, for example, and you get 0xd11e; the higher bits are masked out. [Rendering of the full range of...

I _am_ a bit surprised that it worked. (I should confess here that I am using a fork that has fullwidth and SMP support already, and therefore hadn't looked too...