mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 02:37:30 +00:00
Fix dialog root
This commit is contained in:
parent
76acaafe32
commit
f59e2b900b
@ -30,17 +30,17 @@ class PostsLayoutPreferencesDialogFragment(
|
||||
}
|
||||
|
||||
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
||||
binding = DialogPostLayoutPreferencesBinding.inflate(layoutInflater, null, false)
|
||||
binding = DialogPostLayoutPreferencesBinding.inflate(layoutInflater)
|
||||
init()
|
||||
return MaterialAlertDialogBuilder(requireContext()).apply {
|
||||
setView(binding.root)
|
||||
setPositiveButton(R.string.apply) { _: DialogInterface?, _: Int ->
|
||||
return MaterialAlertDialogBuilder(requireContext())
|
||||
.setView(binding.getRoot())
|
||||
.setPositiveButton(R.string.apply) { _: DialogInterface?, _: Int ->
|
||||
val preferences = preferencesBuilder.build()
|
||||
val json = preferences.json
|
||||
Utils.settingsHelper.putString(layoutPreferenceKey, json)
|
||||
onApplyListener.onApply(preferences)
|
||||
}
|
||||
}.create()
|
||||
.create()
|
||||
}
|
||||
|
||||
private fun init() {
|
||||
|
Loading…
Reference in New Issue
Block a user