Qt 6.11 is out! See what's new in the release
blog
table view draws over previous content on model change
-
I have table view with list model. When user interacts with another qml item its signal is called. In callback I call
model.clear()first then I fill in the model with calls tomodel.append(...). I am surprised that on Debian (Ubuntu is fine) half the time (I guess) the next "table" is drawn atop the previous. It did not happen on another linux platform. I noticed that the past content just disappears when I bring another window into focus or when I interact (click) the table view. How can I fix that?