mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	Allow preferences to multi-line (#5905)
This commit is contained in:
		| @@ -94,6 +94,7 @@ fun initDialog(dialogPreference: DialogPreference) { | ||||
| inline fun <P : Preference> PreferenceGroup.add(p: P): P { | ||||
|     return p.apply { | ||||
|         this.isIconSpaceReserved = false | ||||
|         this.isSingleLineTitle = false | ||||
|         addPreference(this) | ||||
|     } | ||||
| } | ||||
| @@ -102,6 +103,7 @@ inline fun <P : Preference> PreferenceGroup.initThenAdd(p: P, block: P.() -> Uni | ||||
|     return p.apply { | ||||
|         block() | ||||
|         this.isIconSpaceReserved = false | ||||
|         this.isSingleLineTitle = false | ||||
|         addPreference(this) | ||||
|     } | ||||
| } | ||||
| @@ -109,6 +111,7 @@ inline fun <P : Preference> PreferenceGroup.initThenAdd(p: P, block: P.() -> Uni | ||||
| inline fun <P : Preference> PreferenceGroup.addThenInit(p: P, block: P.() -> Unit): P { | ||||
|     return p.apply { | ||||
|         this.isIconSpaceReserved = false | ||||
|         this.isSingleLineTitle = false | ||||
|         addPreference(this) | ||||
|         block() | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user