mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-15 07:52: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) {
|
} catch (e: Exception) {
|
||||||
showErrorToast(e)
|
showErrorToast(e)
|
||||||
}
|
}
|
||||||
|
@ -99,7 +99,7 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
|||||||
|
|
||||||
view.checklist_fab.apply {
|
view.checklist_fab.apply {
|
||||||
setImageDrawable(plusIcon)
|
setImageDrawable(plusIcon)
|
||||||
background.applyColorFilter(activity!!.getAdjustedPrimaryColor())
|
background?.applyColorFilter(activity!!.getAdjustedPrimaryColor())
|
||||||
setOnClickListener {
|
setOnClickListener {
|
||||||
showNewItemDialog()
|
showNewItemDialog()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user