Page 1 of 1

Zoom controls don't function

Posted: 2016-07-17, 19:53
by coffeebreak
The zoom controls don't function at all. Same result trying with the toolbar buttons, the menubar (View -> Zoom -> ...) and the keyboard commands.

Re: Zoom controls don't function

Posted: 2016-07-18, 21:26
by Freezing Moon
Confirmed. Portable version (x86).
Also when I use stable version after using alpha version, zoom settings on certain sites are gone.

Re: Zoom controls don't function

Posted: 2016-07-18, 21:56
by Kunagi7
Confirmed. Linux x86_64 version.
Only works Ctrl+Mouse wheel or Ctrl+0 to reset.
Ctrl++/- don't do anything.

Re: Zoom controls don't function

Posted: 2016-07-18, 22:03
by Moonchild
Freezing Moon: I've made very clear that switching between v26 and v27 back and forth will make you lose settings. the site-specific preferences (that includes page zoom) will be lost going back to v26 after running v27 due to one-way conversions of profile data.

In general: always please check the error console if you found a control not working and quote any errors that are thrown there upon using the control (clear the console, use the control, then check what's there).

Re: Zoom controls don't function

Posted: 2016-07-19, 00:46
by coffeebreak
coffeebreak wrote:The zoom controls don't function at all. Same result trying with the toolbar buttons, the menubar (View -> Zoom -> ...) and the keyboard commands.
Have to amend this: Ctrl+mousewheel does work, after which Ctrl+0 resets the page. (Didn't know the mousewheel could zoom, thank you Kunagi7!)

But otherwise for me the zoom controls do nothing. This is with v27 slipped into Portable PM with its own fresh profile and has been like this since the first run page.

Keyboard (Ctrl ++, Ctrl +-), menubar commands, and the zoom in/out buttons from the customize palette -- none of these do anything.

The error console was completely empty when trying each of these.

Re: Zoom controls don't function

Posted: 2016-07-19, 00:49
by New Tobin Paradigm
The Error Console doesn't show any errors.. Yeah the menu items are busted but not throwing any errors.. Reset Zoom does work as does the option to zoom only text.. This is very strange indeed.

Re: Zoom controls don't function

Posted: 2016-07-20, 12:22
by Moonchild
As it turns out, the toolkit is expecting a different UI structure to respond to changes in zoom due to e10s changes in the back-end.
Not a problem with the mouse since it does the appropriate calls directly (so much for consistency in API calls).

So the FE was telling the BE something, but the BE wasn't listening. Hence no errors.

It needed the FE structures and calls to be changed to talk to toolkit properly. Not the most straightforward but fixable.
Bonus: I got to remove some redundant code and unnecessary interface queries ;)