Skip to content

Commit

Permalink
Increase maximum for zoom plugin (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisenzahl committed Jul 21, 2020
1 parent 0c4f2de commit 203e93c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/zoom/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 203e93c

Please sign in to comment.