mirror of
				https://github.com/SimpleMobileTools/Simple-Notes.git
				synced 2025-06-05 17:00:23 +02:00 
			
		
		
		
	fix #376, properly handle printing hashtags
This commit is contained in:
		| @@ -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() | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user