Differences From Artifact [d41fb5a0e1]:
- File window.c — part of check-in [cc4808683d] at 2003-11-20 12:41:12 on branch trunk — Introduce a new mouse handling option, in which the right button brings up the context menu (and you can then paste by selecting `Paste'). Should be more friendly to Windows-oriented users as opposed to expatriate X users; also has the effect of making it more difficult to paste into PuTTY by a single misplaced mouse click, which has been a common theme of complaint recently. For the moment, `Compromise' (the X-like behaviour with the right and middle buttons reversed so that two-button users still get the two most important functions) is still the default. I'm uncertain that it might not be better to make the new option the default, though, since the compromise option is optimal for _nobody_. (user: simon size: 122086)
To Artifact [93bf4fcee9]:
- File window.c — part of check-in [0b83b0b033] at 2003-12-03 17:32:47 on branch trunk — Fix from Michael Wardle in bell error message (user: jacob size: 122091)
| ︙ | |||
4432 4433 4434 4435 4436 4437 4438 | 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 | - + |
lastbeep = GetTickCount();
} else if (mode == BELL_WAVEFILE) {
if (!PlaySound(cfg.bell_wavefile.path, NULL,
SND_ASYNC | SND_FILENAME)) {
char buf[sizeof(cfg.bell_wavefile) + 80];
char otherbuf[100];
sprintf(buf, "Unable to play sound file\n%s\n"
|
| ︙ |