--- a/README.md Tue Feb 05 02:13:04 2019 +0100
+++ b/README.md Tue Feb 05 02:18:13 2019 +0100
@@ -100,6 +100,7 @@
* Switch + Toggle hedgehog tags: Toggle hedgehog tag translucency
* Precise + Toggle team bars + Switch: Toggle HUD
* Precise + Capture (screenshot key): Save current map + mask into Screenshot directory
+* Precise + Reset zoom: Set zoom to 100% (instead of the zoom level in the settings)
System requirements
-------------------
--- a/hedgewars/uCommandHandlers.pas Tue Feb 05 02:13:04 2019 +0100
+++ b/hedgewars/uCommandHandlers.pas Tue Feb 05 02:18:13 2019 +0100
@@ -732,7 +732,10 @@
procedure chZoomReset(var s: shortstring);
begin
s:= s; // avoid compiler hint
- ZoomValue:= UserZoom;
+ if (LocalMessage and gmPrecise <> 0) then
+ ZoomValue:= cDefaultZoomLevel
+ else
+ ZoomValue:= UserZoom;
end;
procedure chMapGen(var s: shortstring);