mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
Fix picture view move; Enable hw blit for picture/logo; Move channel logo display after all channellist shown
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@273 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: 022509f24e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2010-02-06 (Sat, 06 Feb 2010)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -397,7 +397,7 @@ int CPictureViewerGui::show()
|
||||
}
|
||||
else if ( msg == CRCInput::RC_1 )
|
||||
{
|
||||
if (m_state != MENU)
|
||||
if (m_state != MENU && !playlist.empty())
|
||||
{
|
||||
m_viewer->Zoom(2.0/3);
|
||||
}
|
||||
@@ -405,14 +405,14 @@ int CPictureViewerGui::show()
|
||||
}
|
||||
else if ( msg == CRCInput::RC_2 )
|
||||
{
|
||||
if (m_state != MENU)
|
||||
if (m_state != MENU && !playlist.empty())
|
||||
{
|
||||
m_viewer->Move(0,-50);
|
||||
}
|
||||
}
|
||||
else if ( msg == CRCInput::RC_3 )
|
||||
{
|
||||
if (m_state != MENU)
|
||||
if (m_state != MENU && !playlist.empty())
|
||||
{
|
||||
m_viewer->Zoom(1.5);
|
||||
}
|
||||
@@ -420,7 +420,7 @@ int CPictureViewerGui::show()
|
||||
}
|
||||
else if ( msg == CRCInput::RC_4 )
|
||||
{
|
||||
if (m_state != MENU)
|
||||
if (m_state != MENU && !playlist.empty())
|
||||
{
|
||||
m_viewer->Move(-50,0);
|
||||
}
|
||||
@@ -447,14 +447,14 @@ int CPictureViewerGui::show()
|
||||
}
|
||||
else if ( msg == CRCInput::RC_6 )
|
||||
{
|
||||
if (m_state != MENU && playlist.empty())
|
||||
if (m_state != MENU && !playlist.empty())
|
||||
{
|
||||
m_viewer->Move(50,0);
|
||||
}
|
||||
}
|
||||
else if ( msg == CRCInput::RC_8 )
|
||||
{
|
||||
if (m_state != MENU && playlist.empty())
|
||||
if (m_state != MENU && !playlist.empty())
|
||||
{
|
||||
m_viewer->Move(0,50);
|
||||
}
|
||||
|
Reference in New Issue
Block a user