kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix media selection dismissing when deselecting last item.
rodzic
498b7fee69
commit
6463dca2c6
|
@ -37,7 +37,7 @@ class MediaSelectionGalleryFragment : Fragment(R.layout.fragment_container), Med
|
||||||
)
|
)
|
||||||
|
|
||||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
val isFirst = arguments?.getBoolean("first") ?: false
|
val isFirst = arguments?.getBoolean("suppressEmptyError") ?: arguments?.getBoolean("first") ?: false
|
||||||
sharedViewModel.setSuppressEmptyError(isFirst)
|
sharedViewModel.setSuppressEmptyError(isFirst)
|
||||||
mediaGalleryFragment = ensureMediaGalleryFragment()
|
mediaGalleryFragment = ensureMediaGalleryFragment()
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,12 @@
|
||||||
tools:layout="@layout/fragment_container">
|
tools:layout="@layout/fragment_container">
|
||||||
<action
|
<action
|
||||||
android:id="@+id/action_mediaCaptureFragment_to_mediaGalleryFragment"
|
android:id="@+id/action_mediaCaptureFragment_to_mediaGalleryFragment"
|
||||||
app:destination="@id/mediaGalleryFragment" />
|
app:destination="@id/mediaGalleryFragment">
|
||||||
|
<argument
|
||||||
|
android:name="suppressEmptyError"
|
||||||
|
android:defaultValue="true"
|
||||||
|
app:argType="boolean" />
|
||||||
|
</action>
|
||||||
<action
|
<action
|
||||||
android:id="@+id/action_mediaCaptureFragment_to_textStoryPostCreationFragment"
|
android:id="@+id/action_mediaCaptureFragment_to_textStoryPostCreationFragment"
|
||||||
app:destination="@id/textStoryPostCreationFragment"
|
app:destination="@id/textStoryPostCreationFragment"
|
||||||
|
|
Ładowanie…
Reference in New Issue