Browse Source

VLCMediaCategoryViewController: Search: Empty text when canceled

(closes #532)
Soomin Lee 6 years ago
parent
commit
fb0dbbc6e9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Sources/MediaCategories/MediaCategoryViewController.swift

+ 1 - 0
Sources/MediaCategories/MediaCategoryViewController.swift

@@ -255,6 +255,7 @@ class VLCMediaCategoryViewController: UICollectionViewController, UICollectionVi
 
 
     func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
     func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
         searchBar.resignFirstResponder()
         searchBar.resignFirstResponder()
+        searchBar.text = ""
         searchBar.setShowsCancelButton(false, animated: true)
         searchBar.setShowsCancelButton(false, animated: true)
         reloadData()
         reloadData()
     }
     }