1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix window buttons in "multi-window" mode

This commit is contained in:
Nils Fenner 2015-09-23 11:57:50 +02:00
parent c7b5337723
commit 41500f2134
No known key found for this signature in database
GPG Key ID: 9591A163FF9BE04C
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
#include <QPushButton>
GenericChatForm::GenericChatForm(QWidget *parent)
: QWidget(parent)
: QWidget(parent, Qt::Window)
, audioInputFlag(false)
, audioOutputFlag(false)
{

View File

@ -32,7 +32,7 @@
#include <QWindow>
SettingsWidget::SettingsWidget(QWidget* parent)
: QWidget(parent)
: QWidget(parent, Qt::Window)
{
body = new QWidget();
QVBoxLayout* bodyLayout = new QVBoxLayout();