Analyzer::Base: Set `Qt::WA_OpaquePaintEvent`

This commit is contained in:
Jonas Kvinge 2022-08-24 20:32:08 +02:00
parent b78677e285
commit 27b01d3642
1 changed files with 5 additions and 1 deletions

View File

@ -57,7 +57,11 @@ Analyzer::Base::Base(QWidget *parent, const uint scopeSize)
lastscope_(512),
new_frame_(false),
is_playing_(false),
timeout_(40) {}
timeout_(40) {
setAttribute(Qt::WA_OpaquePaintEvent, true);
}
Analyzer::Base::~Base() {
delete fht_;