mirror of
https://github.com/elementary/gala.git
synced 2024-12-25 18:24:05 +03:00
Zoom: avoid using Gdk.beep
(#2022)
This commit is contained in:
parent
4461b501c1
commit
d1b04e228c
@ -115,7 +115,7 @@ public class Gala.Zoom : Object {
|
||||
// Nothing to do if zooming out of our bounds is requested
|
||||
if ((current_zoom <= MIN_ZOOM && delta < 0) || (current_zoom >= MAX_ZOOM && delta >= 0)) {
|
||||
if (play_sound) {
|
||||
Gdk.beep ();
|
||||
Clutter.get_default_backend ().get_default_seat ().bell_notify ();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user