We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All widgets change their size rapidly while application window is being resized.
We found that if scroll_zoom_area widget is switched of in main window than flickering disappear
The text was updated successfully, but these errors were encountered:
The problem appears when OpenGLWidget is created in ScrollZoomArea constructor and only if OpenGLWidget's parent is this
OpenGLWidget
ScrollZoomArea
this
Sorry, something went wrong.
Minimal example
#include <QApplication> #include <QDockWidget> #include <QLabel> #include <QMainWindow> #include <QOpenGLWidget> int main(int argc, char** argv) { QApplication app(argc, argv); QMainWindow main_window; auto opengl_widget = new QOpenGLWidget(&main_window); main_window.setCentralWidget(opengl_widget); auto dock_widget = new QDockWidget("label", &main_window); main_window.addDockWidget(Qt::RightDockWidgetArea, dock_widget); main_window.show(); return app.exec(); }
https://youtu.be/idnqK6uSfBA
Related bug in Qt: QTBUG-46634
We opened new issue in Qt bug tracker: QTBUG-77032
No branches or pull requests
All widgets change their size rapidly while application window is being resized.
We found that if scroll_zoom_area widget is switched of in main window than flickering disappear
The text was updated successfully, but these errors were encountered: