mirror of
				https://github.com/SimpleMobileTools/Simple-Notes.git
				synced 2025-06-05 17:00:23 +02:00 
			
		
		
		
	Merge pull request #472 from Aga-C/fix-search-hiding
Fixed search button not hiding for checklist
This commit is contained in:
		| @@ -266,7 +266,7 @@ class MainActivity : SimpleActivity() { | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     private fun isCurrentItemChecklist() = mAdapter?.isChecklistFragment(view_pager.currentItem) ?: false | ||||
|     private fun isCurrentItemChecklist() = if (this::mCurrentNote.isInitialized) mCurrentNote.type == NoteType.TYPE_CHECKLIST.value else false | ||||
|  | ||||
|     private fun checkIntents(intent: Intent) { | ||||
|         intent.apply { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user