Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-03-09 18:34:27 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-03-09 18:34:27 +0300
commit413ea83c7100041c273c6504203deae8f21a7b61 (patch)
treebcefdc32139b91584fd874d1f90056f8728e9a6a
parent96765f51ad97252ebe4eae8b4e965ba2be292d04 (diff)
Only give UserInfo parent when in overlay
-rw-r--r--src/mumble/Messages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mumble/Messages.cpp b/src/mumble/Messages.cpp
index 99afa888e..c3b9f86c7 100644
--- a/src/mumble/Messages.cpp
+++ b/src/mumble/Messages.cpp
@@ -688,7 +688,7 @@ void MainWindow::msgUserStats(const MumbleProto::UserStats &msg) {
if (ui) {
ui->update(msg);
} else {
- ui = new UserInformation(msg, g.mw);
+ ui = new UserInformation(msg, g.ocIntercept ? g.mw : NULL);
ui->setAttribute(Qt::WA_DeleteOnClose, true);
connect(ui, SIGNAL(destroyed()), this, SLOT(destroyUserInformation()));