Browse Source

fix window buttons in "multi-window" mode

pull/2279/head
Nils Fenner 10 years ago
parent
commit
41500f2134
No known key found for this signature in database
GPG Key ID: 9591A163FF9BE04C
  1. 2
      src/widget/form/genericchatform.cpp
  2. 2
      src/widget/form/settingswidget.cpp

2
src/widget/form/genericchatform.cpp

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

2
src/widget/form/settingswidget.cpp

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

Loading…
Cancel
Save