mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-13 23:12:02 +02:00
fix #376, properly handle printing hashtags
This commit is contained in:
parent
ad2cb70a0c
commit
8880b4795e
@ -860,7 +860,7 @@ class MainActivity : SimpleActivity() {
|
||||
}
|
||||
}
|
||||
|
||||
webView.loadData(getPrintableText(), "text/plain", "UTF-8")
|
||||
webView.loadData(getPrintableText().replace("#", "%23"), "text/plain", "UTF-8")
|
||||
} catch (e: Exception) {
|
||||
showErrorToast(e)
|
||||
}
|
||||
|
@ -99,7 +99,7 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
||||
|
||||
view.checklist_fab.apply {
|
||||
setImageDrawable(plusIcon)
|
||||
background.applyColorFilter(activity!!.getAdjustedPrimaryColor())
|
||||
background?.applyColorFilter(activity!!.getAdjustedPrimaryColor())
|
||||
setOnClickListener {
|
||||
showNewItemDialog()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user