diff options
author | FearlessTobi <thm.frey@gmail.com> | 2022-07-31 04:46:26 +0200 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2022-09-09 14:30:22 +0200 |
commit | f5e635addaef59159bf6bc529b17954eda3684a1 (patch) | |
tree | 6d6b518611b377b6bd79e3156eb16f60f5045698 /src/yuzu/multiplayer/state.cpp | |
parent | 0cef3b47f36e8613f7fdbda8fd712e0784026ac2 (diff) |
ldn: Initial implementation
Diffstat (limited to 'src/yuzu/multiplayer/state.cpp')
-rw-r--r-- | src/yuzu/multiplayer/state.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/multiplayer/state.cpp b/src/yuzu/multiplayer/state.cpp index 66e098296..3ad846028 100644 --- a/src/yuzu/multiplayer/state.cpp +++ b/src/yuzu/multiplayer/state.cpp @@ -249,6 +249,7 @@ void MultiplayerState::ShowNotification() { return; // Do not show notification if the chat window currently has focus show_notification = true; QApplication::alert(nullptr); + QApplication::beep(); status_icon->setPixmap(QIcon::fromTheme(QStringLiteral("connected_notification")).pixmap(16)); status_text->setText(tr("New Messages Received")); } |