mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
14 lines
207 B
C++
14 lines
207 B
C++
#include "titlebar.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
TitleBar::TitleBar(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
setFixedHeight(32);
|
|
}
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|