1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
This commit is contained in:
tux3 2015-06-06 21:26:09 +02:00
parent d76fb459cf
commit d8446a7f90
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
2 changed files with 9 additions and 0 deletions

View File

@ -993,6 +993,14 @@ void ChatForm::show(Ui::MainWindow &ui)
callConfirm->show();
}
void ChatForm::showEvent(QShowEvent* event)
{
if (callConfirm)
callConfirm->show();
GenericChatForm::showEvent(event);
}
void ChatForm::hideEvent(QHideEvent* event)
{
if (callConfirm)

View File

@ -112,6 +112,7 @@ protected:
void dropEvent(QDropEvent* ev);
void registerReceipt(int receipt, int messageID, ChatMessage::Ptr msg);
virtual void hideEvent(QHideEvent* event);
virtual void showEvent(QShowEvent* event);
private:
Friend* f;