diff options
Diffstat (limited to 'src/background/index.js')
-rw-r--r-- | src/background/index.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/background/index.js b/src/background/index.js index cfd5e77..62e4a7b 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -45,6 +45,9 @@ const doBackgroundAction = (sender, action) => { case actions.ZOOM_OUT: zooms.zoomOut(); break; + case actions.ZOOM_NEUTRAL: + zooms.neutral(); + break; } } |