Skip to content

Commit

Permalink
Zoom: avoid using Gdk.beep (#2022)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter authored Aug 13, 2024
1 parent 4461b50 commit d1b04e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zoom.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d1b04e2

Please sign in to comment.