1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Gareth pointed out yesterday that the Unix terminal front end treats

BELL_DISABLED as BELL_DEFAULT. How embarrassing.

[originally from svn r7316]
This commit is contained in:
Simon Tatham 2007-02-24 13:36:11 +00:00
parent 0f013108c3
commit b897c90dd3

View File

@ -1867,7 +1867,7 @@ void sys_cursor(void *frontend, int x, int y)
*/
void do_beep(void *frontend, int mode)
{
if (mode != BELL_VISUAL)
if (mode == BELL_DEFAULT)
gdk_beep();
}