Feature #845
openOn-The-Fly Zoom Factor does not display changes made by CTRL-Scrolling
0%
Description
Holding CTRL on the keyboard while scrolling the mouse wheel adjusts the On-The-Fly zoom setting, but it isn't currently reflected in the On-The-Fly menu action.
There might be some signal I can attach to that would update this.
Updated by Soren Stoutner almost 2 years ago
It might be possible to detect this with https://doc.qt.io/qt-5/qwebenginepage.html#contentsSize-prop.
Updated by Soren Stoutner almost 2 years ago
This was partially fixed by attaching to the `contentSizeChanged()` signal, but stops updating if the zoom size gets so small that the entire page fits on the screen.
Updated by Soren Stoutner almost 2 years ago
Reported upstream at https://bugreports.qt.io/browse/QTBUG-111041.
Updated by Soren Stoutner almost 2 years ago
- Status changed from New to In Progress
Updated by Soren Stoutner over 1 year ago
This could also possibly be solved by intercepting the Ctrl+Scroll WheelEvents.
https://stackoverflow.com/questions/26677093/qt-qwheelevent-does-not-refer-to-a-value
Updated by Soren Stoutner 7 months ago
Qt has added a new signal to 6.8 that will resolve this issue.