Chatterino
RemoveScrollAreaBackground.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QScrollArea>
4 
5 namespace chatterino {
6 
7 static void removeScrollAreaBackground(QScrollArea *scrollArea,
8  QWidget *childWidget)
9 {
10  scrollArea->setWidgetResizable(true);
11  scrollArea->setFrameStyle(0);
12 
13  QPalette p;
14  p.setColor(QPalette::Window, QColor(0, 0, 0, 0));
15  scrollArea->setPalette(p);
16  childWidget->setPalette(p);
17 }
18 
19 } // namespace chatterino
Definition: Application.cpp:48