summaryrefslogtreecommitdiff
path: root/plugins/VoiceService/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-08-31 17:18:04 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-08-31 17:18:04 +0300
commita018488fdc9fd3732e45c4b5f7667d2ed5ae23bf (patch)
tree39dd1a52e0b0ecccc2b541c37fc357b1e08757fc /plugins/VoiceService/src
parentf3053333bf0759c8b51e3d4f407d7922facc03c1 (diff)
fixes #3171 (VoiceService: do not grab focus on incoming call)
Diffstat (limited to 'plugins/VoiceService/src')
-rw-r--r--plugins/VoiceService/src/VoiceCall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VoiceService/src/VoiceCall.cpp b/plugins/VoiceService/src/VoiceCall.cpp
index 56be10ec6e..c6f579f2d4 100644
--- a/plugins/VoiceService/src/VoiceCall.cpp
+++ b/plugins/VoiceService/src/VoiceCall.cpp
@@ -68,7 +68,7 @@ VoiceCall::VoiceCall(VoiceProvider *module, const char *id) :
m_calltimer.OnEvent = Callback(this, &VoiceCall::OnCallTimer);
CreateDisplayName();
- Show();
+ Show(SW_SHOWNOACTIVATE);
}
VoiceCall::~VoiceCall()