1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-02-07 15:28:47 +01:00

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

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_;