enable check-for-updated menu even on DEBUG builds (though the server

doesn't respond with anything yet)
This commit is contained in:
Eric House 2015-06-08 06:31:36 -07:00
parent f4f9d11c3b
commit faba6c856f

View file

@ -1300,7 +1300,7 @@ public class GamesListDelegate extends ListDelegateBase
// check for updates only serves release builds, so don't offer in
// DEBUG case
boolean enable = showDbg && !BuildConfig.DEBUG && nothingSelected
boolean enable = showDbg && nothingSelected
&& UpdateCheckReceiver.haveToCheck( m_activity );
Utils.setItemVisible( menu, R.id.games_menu_checkupdates, enable );