Fix the mouse question again to only run the mouse menu if a user doesn't

have a USB mouse.  Here's the deal on how this works:  USB mouse have
moused run for them automatically by usbd so we don't need to setup moused
for them.  We do need to setup moused for other mice though, so if the
user has a USB mouse, we don't need to do anything.  Hence the wording
"Do you have a non-USB mouse installed?" for the question.  The question
can be reworded as "Do you have a PS/2 or Serial mouse installed?" instead
if that is preferred.
This commit is contained in:
John Baldwin 2001-12-10 22:12:23 +00:00
parent 28644e448a
commit 4f33ba1610
2 changed files with 2 additions and 2 deletions

View File

@ -654,7 +654,7 @@ installStandard(dialogMenuItem *self)
#endif
dialog_clear_norefresh();
if (msgNoYes("Does this system have a USB mouse attached to it?"))
if (!msgNoYes("Does this system have a non-USB mouse attached to it?"))
dmenuOpenSimple(&MenuMouse, FALSE);
/* Now would be a good time to checkpoint the configuration data */

View File

@ -654,7 +654,7 @@ installStandard(dialogMenuItem *self)
#endif
dialog_clear_norefresh();
if (msgNoYes("Does this system have a USB mouse attached to it?"))
if (!msgNoYes("Does this system have a non-USB mouse attached to it?"))
dmenuOpenSimple(&MenuMouse, FALSE);
/* Now would be a good time to checkpoint the configuration data */