From: Kim Tae Soo Date: Wed, 4 Mar 2015 07:32:53 +0000 (+0900) Subject: [JIRA:TT-5] Pause button becomes deactivated after removing playlist in the playback... X-Git-Tag: accepted/tizen/tv/20150304.123202^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=306ef1e2d803280d27569cbc677c18c681d306f4;p=profile%2Ftv%2Fapps%2Fnative%2Fmusicplayer.git [JIRA:TT-5] Pause button becomes deactivated after removing playlist in the playback view Change-Id: Id717f0f37caf381071db4958e839be36e4f1985a Signed-off-by: Kim Tae Soo --- diff --git a/src/views/song-layout.cpp b/src/views/song-layout.cpp index 855913c..c92a24c 100644 --- a/src/views/song-layout.cpp +++ b/src/views/song-layout.cpp @@ -415,7 +415,13 @@ void CSongLayout::m_EmptySongList(bool sort_flag) void CSongLayout::m_GotoPlayback(void) { - if (!m->vmgr->PushView(MUSIC_PLAYBACK_VIEW, NULL)) + SParcel parcel; + parcel.ctxtInfo = NULL; + parcel.updateType = E_PLAYLIST_UPDATE; + parcel.layoutId = NULL; + parcel.keyEvent = NULL; + + if (!m->vmgr->PushView(MUSIC_PLAYBACK_VIEW, &parcel)) _ERR(" viewmgr push view MUSIC_PLAYBACK_VIEW failed "); }