This happens in Qt Simulator (for phones). I'm trying to update only a portion of a widget's area, but the entire widget is updated instead.
To illustrate, the following code:
void Widget::mousePressEvent(QMouseEvent *event)
{
update(0, 0, 10, 10);
}
void Widget::paintEvent(QPaintEvent *event)
{
qDebug() << event->rect();
}
Gives the following debug output when I click on the widget:
QRect(0,0 458x832)
Which is the entire area of the widget.
What am I doing wrong here?
Edit
I ran the same code on Linux, and it worked as it should, the debug output was
QRect(0,0 10x10)