diff options
author | phintuka <phintuka> | 2010-09-13 11:27:05 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-09-13 11:27:05 +0000 |
commit | 74504030edb3f2cc813969beaebafa812bb243c2 (patch) | |
tree | 050aed2721316ddbec9a83634f5a4299b91ccb3a | |
parent | e1e3c4cc56e452749058ca538280bea413bca5dd (diff) | |
download | xineliboutput-74504030edb3f2cc813969beaebafa812bb243c2.tar.gz xineliboutput-74504030edb3f2cc813969beaebafa812bb243c2.tar.bz2 |
Do not lose the key pressed while displaying "Queued to playlist" message
(Thanks to Marco Skambraks)
-rw-r--r-- | media_player.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media_player.c b/media_player.c index bdf70286..a6c3d60e 100644 --- a/media_player.c +++ b/media_player.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: media_player.c,v 1.75 2010-09-12 20:45:40 phintuka Exp $ + * $Id: media_player.c,v 1.76 2010-09-13 11:27:05 phintuka Exp $ * */ @@ -501,7 +501,7 @@ void cXinelibPlayerControl::Queue(const char *File) m_Player->Playlist().Read(File); } - Skins.Message(mtInfo, tr("Queued to playlist")); + cRemote::Put(Skins.Message(mtInfo, tr("Queued to playlist")), true); m_Lock.Unlock(); |