mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 09:12:24 +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:
parent
0f013108c3
commit
b897c90dd3
@ -1867,7 +1867,7 @@ void sys_cursor(void *frontend, int x, int y)
|
|||||||
*/
|
*/
|
||||||
void do_beep(void *frontend, int mode)
|
void do_beep(void *frontend, int mode)
|
||||||
{
|
{
|
||||||
if (mode != BELL_VISUAL)
|
if (mode == BELL_DEFAULT)
|
||||||
gdk_beep();
|
gdk_beep();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user