diff options
author | George Hazan <ghazan@miranda.im> | 2022-08-31 17:18:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-08-31 17:18:04 +0300 |
commit | a018488fdc9fd3732e45c4b5f7667d2ed5ae23bf (patch) | |
tree | 39dd1a52e0b0ecccc2b541c37fc357b1e08757fc /plugins/VoiceService/src | |
parent | f3053333bf0759c8b51e3d4f407d7922facc03c1 (diff) |
fixes #3171 (VoiceService: do not grab focus on incoming call)
Diffstat (limited to 'plugins/VoiceService/src')
-rw-r--r-- | plugins/VoiceService/src/VoiceCall.cpp | 2 |
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() |