Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
808d1d38
Commit
808d1d38
authored
Aug 06, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - systray behaviour: first activate the Windows before hiding it.
Closes #1249
parent
12e628a7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+15
-1
No files found.
modules/gui/qt4/main_interface.cpp
View file @
808d1d38
...
...
@@ -460,7 +460,21 @@ void MainInterface::updateSystrayMenu( int status )
*/
void
MainInterface
::
toggleUpdateSystrayMenu
()
{
toggleVisible
();
if
(
isHidden
()
)
{
show
();
}
else
{
if
(
isActiveWindow
()
)
{
hide
();
}
else
{
activateWindow
();
}
}
QVLCMenu
::
updateSystrayMenu
(
this
,
p_intf
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment