Flip around the choose songs check

This commit is contained in:
Christopher Eby 2010-03-25 22:04:24 -05:00
parent 8d738567f1
commit 8b9f851fae

View File

@ -180,7 +180,7 @@ public class FullPlaybackActivity extends PlaybackActivity implements View.OnCli
@Override
public boolean onPrepareOptionsMenu(Menu menu)
{
menu.findItem(MENU_LIBRARY).setEnabled((mState & PlaybackService.FLAG_NO_MEDIA) != 0);
menu.findItem(MENU_LIBRARY).setEnabled((mState & PlaybackService.FLAG_NO_MEDIA) == 0);
return true;
}