You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The delete PC confirmation and the new death confirmation window are both responding to keyboard 'y' for yes but not 'n' for No. The dialogxml looks like both should work:
<dialog defbtn='no'>
<pict type='dlog' num='7' top='6' left='6'/>
<text top='6' left='48' width='249' height='67'>
You are about to kill your entire party.<br/>
<br/>
Are you sure you want to do this?
</text>
<button name='no' type='regular' def-key='n' top='84' left='239'>No</button>
<button name='yes' type='regular' def-key='y' top='84' left='172'>Yes</button>
</dialog>
Maybe by being the default button, the no button's key of y is getting overridden with enter. When I would like it to respond to either one.
EDIT: Of the two, actually I think I would rather 'n' click the button than Enter. But that might vary from person to person, dialog to dialog, and based upon mood.
The text was updated successfully, but these errors were encountered:
Maybe this can be fixed purely in the XML. A lot of these yes/no confirmation dialogs are just copy-pastes of the same XML into a new file (that's how I made the most recent new confirmation for the death action). So if I just survey each dialog with yes/no choices and decide some things on a case by case basis, maybe none of them will actually require a button to listen for more than one key.
For example, I think it makes little sense for the Enter key to ever result in an input of No. If I triggered an action, press Enter, and it doesn't happen, that's disorienting.
That doesn't necessarily mean Yes should be the default button--because on the other hand, if the action is destructive and I initiated it by accident, I don't want to stumble into accidentally confirming.
For important things like deleting the PC and killing the party, really to me it seems like Y and N should be the only keys it responds to. If the player ends up in those dialogs while running their brain on autopilot, it seems best to me that the Enter key does nothing so they will stop to read the confirmation and choose carefully.
Just brainstorming--I might change my mind completely. And it wouldn't hurt to have buttons that can listen to >1 key.
The delete PC confirmation and the new death confirmation window are both responding to keyboard 'y' for yes but not 'n' for No. The dialogxml looks like both should work:
Maybe by being the default button, the no button's key of
y
is getting overridden withenter
. When I would like it to respond to either one.EDIT: Of the two, actually I think I would rather 'n' click the button than Enter. But that might vary from person to person, dialog to dialog, and based upon mood.
The text was updated successfully, but these errors were encountered: