You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use the widget inside my software, the widget do not refresh after the buffer is set. After call: hexView->clear(); hexView->setData(new QHexView::DataStorageArray(byteArray));
it need a click inside the widget to get a refresh of the data. What is the trick to make it after setData refreshed?
The text was updated successfully, but these errors were encountered:
You can try to call repaint() (https://doc.qt.io/qt-5/qwidget.html#repaint) directly. hexView->setData(new QHexView::DataStorageArray(byteArray)); hexView->repaint();
I hope it can help you.
If I use the widget inside my software, the widget do not refresh after the buffer is set. After call:
hexView->clear(); hexView->setData(new QHexView::DataStorageArray(byteArray));
it need a click inside the widget to get a refresh of the data. What is the trick to make it after setData refreshed?
The text was updated successfully, but these errors were encountered: