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
Running CamCOPS with memory leak debugging (sudo apt install valgrind, then the "Memcheck" option from the Qt Creator menu) shows multiple instances of e.g.
16 bytes in 1 blocks are definitely lost in loss record <x> of <n> ... uifunc.cpp:559:0
32 bytes in 2 blocks are definitely lost in loss record <y> of <n> ... uifunc.cpp:559:0
This line is in the function void applyScrollGestures(QWidget* widget), and is
QScroller::grabGesture(widget, gesture_type); // will ungrab any other
Running CamCOPS with memory leak debugging (
sudo apt install valgrind
, then the "Memcheck" option from the Qt Creator menu) shows multiple instances of e.g.This line is in the function
void applyScrollGestures(QWidget* widget)
, and isThis is a known Qt bug:
Our action therefore likely to be: wait for the fix.
The text was updated successfully, but these errors were encountered: