Revert "Add Now Playing to drawer"

This reverts commit 89ede8ff47.
This commit is contained in:
Andrew Rabert 2019-11-27 18:12:51 -05:00
parent e28a70a6e6
commit eaef36849a
5 changed files with 1 additions and 11 deletions

View File

@ -248,9 +248,6 @@ public class SubsonicActivity extends AppCompatActivity implements OnItemSelecte
case R.id.drawer_downloading:
drawerItemSelected("Download");
return true;
case R.id.drawer_now_playing:
drawerItemSelected("Now Playing");
return true;
case R.id.drawer_offline:
toggleOffline();
return true;

View File

@ -551,8 +551,6 @@ public class SubsonicFragmentActivity extends SubsonicActivity implements Downlo
switch (fragmentType) {
case "Playlist":
return new SelectPlaylistFragment();
case "Now Playing":
return new NowPlayingFragment();
case "Download":
return new DownloadFragment();
default:

View File

@ -128,7 +128,7 @@ public class NowPlayingFragment extends SubsonicFragment implements OnGestureLis
startFlipped = true;
}
}
primaryFragment = true;
primaryFragment = false;
}
@Override

View File

@ -14,10 +14,6 @@
android:icon="?attr/drawerDownloading"
android:title="@string/button_bar.downloading"
android:visible="false" />
<item
android:id="@+id/drawer_now_playing"
android:icon="?attr/drawerNowPlaying"
android:title="@string/button_bar.now_playing" />
</group>
<group android:checkableBehavior="single">

View File

@ -43,7 +43,6 @@
<attr name="drawerLibrary" format="reference" />
<attr name="drawerPlaylists" format="reference" />
<attr name="drawerDownloading" format="reference" />
<attr name="drawerNowPlaying" format="reference" />
<attr name="drawerSettings" format="reference" />
<attr name="actionbarThemeStyle" format="reference" />
<attr name="actionbarTitleStyle" format="reference" />