mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Temp commit for debugging audio notifications
This commit is contained in:
parent
c43b612562
commit
e6fc25aa52
|
@ -347,7 +347,7 @@ void Widget::onFriendMessageReceived(int friendId, const QString& message)
|
|||
if (activeFriendWidget != nullptr)
|
||||
{
|
||||
Friend* f2 = FriendList::findFriend(activeFriendWidget->friendId);
|
||||
if ((f->friendId != f2->friendId) || isFriendWidgetActive == 0)
|
||||
if (((f->friendId != f2->friendId) || isFriendWidgetActive == 0) || this->window()->isMinimized())
|
||||
{
|
||||
f->hasNewMessages = 1;
|
||||
newMessageAlert();
|
||||
|
@ -384,6 +384,7 @@ void Widget::newMessageAlert()
|
|||
{
|
||||
QApplication::alert(this, 1000);
|
||||
QSound::play("audio/notification.wav");
|
||||
qWarning() << "ping";
|
||||
}
|
||||
|
||||
void Widget::onFriendRequestReceived(const QString& userId, const QString& message)
|
||||
|
@ -424,7 +425,7 @@ void Widget::onGroupMessageReceived(int groupnumber, int friendgroupnumber, cons
|
|||
|
||||
g->chatForm->addGroupMessage(message, friendgroupnumber);
|
||||
|
||||
if (isGroupWidgetActive != 1 || (g->groupId != activeGroupWidget->groupId))
|
||||
if ((isGroupWidgetActive != 1 || (g->groupId != activeGroupWidget->groupId)) || activeGroupWidget->windowState().testFlag(Qt::WindowMinimized))
|
||||
{
|
||||
if (message.contains(Settings::getInstance().getUsername(), Qt::CaseInsensitive))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user