mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-01-13 09:39:17 +01:00
Added support for startCollectionEnter settings.conf parameter, which will automatically enter the first collection on startup. This is intended to further support the collectionUp/Down keys.
This commit is contained in:
parent
e577ebd34c
commit
6c9abdd626
@ -409,7 +409,17 @@ void RetroFE::run( )
|
||||
case RETROFE_ENTER:
|
||||
if ( currentPage_->isIdle( ) )
|
||||
{
|
||||
state = RETROFE_IDLE;
|
||||
bool startCollectionEnter = false;
|
||||
config_.getProperty( "startCollectionEnter", startCollectionEnter );
|
||||
nextPageItem_ = currentPage_->getSelectedItem( );
|
||||
if ( !splashMode && startCollectionEnter && !nextPageItem_->leaf )
|
||||
{
|
||||
state = RETROFE_NEXT_PAGE_REQUEST;
|
||||
}
|
||||
else
|
||||
{
|
||||
state = RETROFE_IDLE;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
std::string retrofe_version_major = "0";
|
||||
std::string retrofe_version_minor = "9";
|
||||
std::string retrofe_version_build = "5";
|
||||
std::string retrofe_version_build = "6";
|
||||
|
||||
|
||||
std::string Version::getString( )
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user