From 203e93c4e227e9d55ee29aba6b944da4d30c1e4e Mon Sep 17 00:00:00 2001 From: Marius Meisenzahl Date: Tue, 21 Jul 2020 21:50:03 +0200 Subject: [PATCH] Increase maximum for zoom plugin (#877) --- plugins/zoom/Main.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/zoom/Main.vala b/plugins/zoom/Main.vala index 4f2d326c3..b2fb72bdd 100644 --- a/plugins/zoom/Main.vala +++ b/plugins/zoom/Main.vala @@ -82,7 +82,8 @@ namespace Gala.Plugins.Zoom { // Nothing to do if zooming out of our bounds is requested if (current_zoom <= 1.0f && !@in) return; - else if (current_zoom >= 2.5f && @in) + else if (current_zoom >= 10.0f && @in) + Gdk.beep (); return; var wins = wm.ui_group;