Skip to content
Snippets Groups Projects
Unverified Commit 1ea0890a authored by liamwhite's avatar liamwhite Committed by GitHub
Browse files

Merge pull request #12092 from t895/recent-games-default

android: Select recently played games by default in search tab
parents a77feca0 8e93a9a9
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,8 @@ class Game( ...@@ -18,8 +18,8 @@ class Game(
val version: String = "", val version: String = "",
val isHomebrew: Boolean = false val isHomebrew: Boolean = false
) : Parcelable { ) : Parcelable {
val keyAddedToLibraryTime get() = "${programId}_AddedToLibraryTime" val keyAddedToLibraryTime get() = "${path}_AddedToLibraryTime"
val keyLastPlayedTime get() = "${programId}_LastPlayed" val keyLastPlayedTime get() = "${path}_LastPlayed"
override fun equals(other: Any?): Boolean { override fun equals(other: Any?): Boolean {
if (other !is Game) { if (other !is Game) {
......
...@@ -127,6 +127,7 @@ ...@@ -127,6 +127,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:clipToPadding="false" android:clipToPadding="false"
android:paddingVertical="4dp" android:paddingVertical="4dp"
app:checkedChip="@id/chip_recently_played"
app:chipSpacingHorizontal="12dp" app:chipSpacingHorizontal="12dp"
app:singleLine="true" app:singleLine="true"
app:singleSelection="true"> app:singleSelection="true">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment