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

Fix OS X bug with overlapping buttons

Fixes #910
This commit is contained in:
Dubslow 2015-01-15 01:45:42 -06:00
parent cbfe94d6a2
commit 1ab9bb77e6
No known key found for this signature in database
GPG Key ID: 3DB8E05315C220AA

View File

@ -150,6 +150,10 @@ GenericChatForm::GenericChatForm(QWidget *parent) :
sendButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
fileButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
emoteButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
micButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
volButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
callButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
videoButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
menu.addAction(tr("Save chat log"), this, SLOT(onSaveLogClicked()));
menu.addAction(tr("Clear displayed messages"), this, SLOT(clearChatArea(bool)));