Skip to content
Snippets Groups Projects
Commit eda9e4a0 authored by Taras's avatar Taras
Browse files

Remove code and underline

parent 42c64735
No related branches found
No related tags found
No related merge requests found
......@@ -160,8 +160,8 @@ class PreviewPostView(
}
private fun getPostContent() = (postContent as? MediaPostContent)?.copy(
caption = binding.etTextPost.getMarkdown().trim().takeIf { it.isNotEmpty() }
) ?: TextPostContent(binding.etTextPost.getMarkdown().trim())
caption = binding.etTextPost.getMarkdown().takeIf { it.isNotEmpty() }
) ?: TextPostContent(binding.etTextPost.getMarkdown())
private fun updateContentView() {
val isTextContent = postContent is TextPostContent || postContent == null
......@@ -289,13 +289,6 @@ class PreviewPostView(
) {
binding.etTextPost.toggleInlineFormat(InlineFormat.Italic)
}
addMenuItem(
binding.lTextMenu,
R.drawable.ic_composer_underlined,
ComposerAction.UNDERLINE
) {
binding.etTextPost.toggleInlineFormat(InlineFormat.Underline)
}
addMenuItem(
binding.lTextMenu,
R.drawable.ic_strikethrough,
......@@ -324,13 +317,6 @@ class PreviewPostView(
) {
binding.etTextPost.toggleQuote()
}
addMenuItem(
binding.lTextMenu,
R.drawable.ic_composer_code_block,
ComposerAction.CODE_BLOCK
) {
binding.etTextPost.toggleCodeBlock()
}
}
@SuppressLint("ClickableViewAccessibility")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment