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
When dragging nodes around, white lines appear around their original locations.
Tested using Qt 6 (don't have the minor, patch version at the moment.)
Original issue here: paceholder#294
The text was updated successfully, but these errors were encountered:
Have you using Windows? Because I never seen that on Linux, but I think it could be happened to me too in Win once.
Just out of curiosity, try in the constrctor of FlowView, line 40
after setBackgroundBrush(flowViewStyle.BackgroundColor);
setBackgroundBrush(flowViewStyle.BackgroundColor);
try to add setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
and check if change something. It should prevent the glitch when embedded widget is resized
Sorry, something went wrong.
@Daguerreo can confirm that it doesn't happen on Linux (Ubuntu). Will update when I find out if the call to setViewportUpdateMode fixes the problem.
setViewportUpdateMode
No branches or pull requests
When dragging nodes around, white lines appear around their original locations.
Tested using Qt 6 (don't have the minor, patch version at the moment.)
Original issue here: paceholder#294
The text was updated successfully, but these errors were encountered: