mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 11:32:48 -05: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:
@ -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();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user