Franz: Zoom out / Zoom in not working

Created on 30 Oct 2019  Â·  14Comments  Â·  Source: meetfranz/franz

Hi, the zoom out and zoom in function do not work anymore as of update 5.4.0. It does not work on my Ubuntu laptop nor my 2019 MacBook Pro. Please help or take a look at this as quick as you can! Thank you so much!

Most helpful comment

As a fix in the meantime, View -> Toggle Developer Tools and execute this Javascript in the console:

const webviews = document.getElementsByTagName('webview');
for (let e of webviews) {
  e.setZoomLevel(2);
}

Where 2 is the zoom level you want.

All 14 comments

Same here, Franz 5.4.1 on MacOS Mojave 10.14

+1, Franz 5.4.1 on MacOS Mojave 10.14.6

Same here, Franz 5.4.1 on Ubuntu 19.04

Absolutely. Ubuntu 18.04 :-(

As a fix in the meantime, View -> Toggle Developer Tools and execute this Javascript in the console:

const webviews = document.getElementsByTagName('webview');
for (let e of webviews) {
  e.setZoomLevel(2);
}

Where 2 is the zoom level you want.

Franz 5.4.0
Ubuntu 19.10
Same Problem
:(

As a fix in the meantime, View -> Toggle Developer Tools and execute this Javascript in the console:

const webviews = document.getElementsByTagName('webview');
for (let e of webviews) {
  e.setZoomLevel(2);
}

Where 2 is the zoom level you want.

Thanks for you answer. But, how can i zoom out? That works zoom in

Change the zoom level to 1. IIRC, it takes values between 1 and 9,
inclusive.

On Sun, Dec 15, 2019, 12:32 PM YoguiSnow notifications@github.com wrote:

As a fix in the meantime, View -> Toggle Developer Tools and execute this
Javascript in the console:

const webviews = document.getElementsByTagName('webview');for (let e of webviews) {
e.setZoomLevel(2);
}

Where 2 is the zoom level you want.

Thanks for you answer. But, how can i zoom out? That works zoom in

—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/meetfranz/franz/issues/1673?email_source=notifications&email_token=AAACTRO73LR64PYPWIBJ4Q3QY2H5BA5CNFSM4JGT77EKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEG5BQZQ#issuecomment-565844070,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AAACTRNIGCGEH6ARSWNFFPLQY2H5BANCNFSM4JGT77EA
.

As a fix in the meantime, View -> Toggle Developer Tools and execute this Javascript in the console:

const webviews = document.getElementsByTagName('webview');
for (let e of webviews) {
  e.setZoomLevel(2);
}

Where 2 is the zoom level you want.

Thanks for you answer. But, how can i zoom out? That works zoom in

you can change level to -1

Same here on Manjaro with plasma. Thanks @jboyens for the patch!

Franz Version 5.4.1 with MacOS Mojave 10.14.6 is also not working zoom in or out.

cmd + shift + + worked for me

Franz 5.5.0, Catalina 10.15.4 -- standard zoom (cmd+plus/minus) wasn't working, but cmd+shift+plus/minus did.

Franz 5.4.0, electron 6.0.10, windows -- Facebook service reloaded today and zoom is broken, key combos do nothing, view menu options do nothing.

However the developer console code DOES work:

const webviews = document.getElementsByTagName('webview');
for (let e of webviews) {
  e.setZoomLevel(-1.25);
}
Was this page helpful?
0 / 5 - 0 ratings