mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-04 04:34:07 +01:00 
			
		
		
		
	Merge pull request #12092 from t895/recent-games-default
android: Select recently played games by default in search tab
This commit is contained in:
		
						commit
						1ea0890a36
					
				@ -18,8 +18,8 @@ class Game(
 | 
			
		||||
    val version: String = "",
 | 
			
		||||
    val isHomebrew: Boolean = false
 | 
			
		||||
) : Parcelable {
 | 
			
		||||
    val keyAddedToLibraryTime get() = "${programId}_AddedToLibraryTime"
 | 
			
		||||
    val keyLastPlayedTime get() = "${programId}_LastPlayed"
 | 
			
		||||
    val keyAddedToLibraryTime get() = "${path}_AddedToLibraryTime"
 | 
			
		||||
    val keyLastPlayedTime get() = "${path}_LastPlayed"
 | 
			
		||||
 | 
			
		||||
    override fun equals(other: Any?): Boolean {
 | 
			
		||||
        if (other !is Game) {
 | 
			
		||||
 | 
			
		||||
@ -127,6 +127,7 @@
 | 
			
		||||
            android:layout_height="wrap_content"
 | 
			
		||||
            android:clipToPadding="false"
 | 
			
		||||
            android:paddingVertical="4dp"
 | 
			
		||||
            app:checkedChip="@id/chip_recently_played"
 | 
			
		||||
            app:chipSpacingHorizontal="12dp"
 | 
			
		||||
            app:singleLine="true"
 | 
			
		||||
            app:singleSelection="true">
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user