Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
f2f12f8e
Commit
f2f12f8e
authored
Sep 12, 2007
by
Rafaël Carré
Browse files
qt-notify only if vlc window is not visile was removed accidentally in [21845]
parent
e6b2b699
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/main_interface.cpp
View file @
f2f12f8e
...
...
@@ -826,7 +826,7 @@ void MainInterface::updateSystrayTooltipName( QString name )
else
{
sysTray
->
setToolTip
(
name
);
if
(
notificationEnabled
)
if
(
notificationEnabled
&&
(
isHidden
()
||
isMinimized
()
)
)
{
sysTray
->
showMessage
(
qtr
(
"VLC media player"
),
name
,
QSystemTrayIcon
::
NoIcon
,
4000
);
...
...
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