瀏覽代碼

fix spinner by using enabled not refresh like on the original file

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 3 年之前
父節點
當前提交
dc705ccf40
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/src/main/java/com/nextcloud/talk/controllers/ContactsController.kt

+ 1 - 1
app/src/main/java/com/nextcloud/talk/controllers/ContactsController.kt

@@ -704,7 +704,7 @@ class ContactsController(args: Bundle) :
         }
 
         try {
-            binding.controllerGenericRv.swipeRefreshLayout.isRefreshing = !adapter!!.hasFilter()
+            binding.controllerGenericRv.swipeRefreshLayout.isEnabled = !adapter!!.hasFilter()
         } catch (npe: NullPointerException) {
             // view binding can be null
             // since this is called asynchronously and UI might have been destroyed in the meantime