X11_yn_function() issues a pline() to put the prompt and player's
response into the message window. Change it to use visctrl() to
make sure that the response character is ledgible when something
like the '&' command allows an arbitrary answer.
This patch adds a leading space and two extra trailing spaces
to the prompt when it's being issued via popup, but that hasn't
affected the issue mentioned next....
The popup prompting when the 'slow' resource is False doesn't
always resize properly. I saw both too wide and too narrow
[What do you want to throw? [abc] ]b
[ In what direction? ]
and
[Really quit? [yn] (n) ]y
[Dump core? [ynq] (q) ]n (size seemed right, but hard to tell)
[Do you want your posses] (might have shown one more letter;
resize doodad in window's bottom right
corner on OSX oscures the rightmost
column--which is ordinarily a space)
The truncated one did accept responses. If I answered 'n' then
the next question was truncated too, but for 'y' (plus ensuing
feedback) it would be sized correctly for the question after that.
To be clear: the popup width issue was present before this change
and is still present after it. The code already has a hack that's
intended to deal with this but it doesn't do the job for me.
16 lines
711 B
Plaintext
16 lines
711 B
Plaintext
When persistent inventory window is first populated, focus is given to
|
|
its window (behavior might be window manager-specific; it happens with
|
|
default window manager on OSX). Focus should be explicitly directed
|
|
back to the main window.
|
|
|
|
When persistent inventory window is displayed, an update that ought to
|
|
make it grow won't do so even if there is room on the screen for that.
|
|
It will add scrollbar(s) when not already there, and it can be resized
|
|
manually.
|
|
|
|
When the 'slow' resource is off, popup yn_function sometimes doesn't
|
|
resize to fit the prompt properly. There's a hack to set the label
|
|
text twice with comment suggesting that it's there to deal with this,
|
|
but it isn't adequate to fix the problem.
|
|
|