mirror of
https://github.com/tuskyapp/Tusky
synced 2025-01-01 19:51:34 +01:00
Merge pull request #1891 from dkter/multiline-image-desc
Allow newlines in image descriptions
This commit is contained in:
commit
84974b0798
@ -68,7 +68,9 @@ fun <T> T.makeCaptionDialog(existingDescription: String?,
|
||||
dialogLayout.addView(input)
|
||||
(input.layoutParams as LinearLayout.LayoutParams).setMargins(margin, margin, margin, margin)
|
||||
input.setLines(2)
|
||||
input.inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_CAP_SENTENCES
|
||||
input.inputType = (InputType.TYPE_CLASS_TEXT
|
||||
or InputType.TYPE_TEXT_FLAG_MULTI_LINE
|
||||
or InputType.TYPE_TEXT_FLAG_CAP_SENTENCES)
|
||||
input.setText(existingDescription)
|
||||
input.filters = arrayOf(InputFilter.LengthFilter(MEDIA_DESCRIPTION_CHARACTER_LIMIT))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user