From 0726d0f7e1976a820b7f13857ebd96104553518f Mon Sep 17 00:00:00 2001 From: TheLastProject Date: Sun, 22 Feb 2015 20:44:05 +0100 Subject: [PATCH] Clicking the yellow button on an incoming call answers --- src/widget/form/chatform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widget/form/chatform.cpp b/src/widget/form/chatform.cpp index 4465fb8ae..355a341bf 100644 --- a/src/widget/form/chatform.cpp +++ b/src/widget/form/chatform.cpp @@ -274,7 +274,7 @@ void ChatForm::onAvInvite(int FriendId, int CallId, bool video) callButton->setObjectName("grey"); callButton->setToolTip(""); videoButton->setObjectName("yellow"); - videoButton->setToolTip(tr("Accept/Decline video call")); + videoButton->setToolTip(tr("Accept video call")); connect(videoButton, &QPushButton::clicked, this, &ChatForm::onAnswerCallTriggered); } else @@ -286,7 +286,7 @@ void ChatForm::onAvInvite(int FriendId, int CallId, bool video) connect(callConfirm, &CallConfirmWidget::rejected, this, &ChatForm::onRejectCallTriggered); callButton->setObjectName("yellow"); - callButton->setToolTip(tr("Accept/Decline audio call")); + callButton->setToolTip(tr("Accept audio call")); videoButton->setObjectName("grey"); videoButton->setToolTip(""); connect(callButton, &QPushButton::clicked, this, &ChatForm::onAnswerCallTriggered);