This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository evisum.

View the commit online.

commit d73b7db64b85f8297339f794e7521f9f8621fb7c
Author: Alastair Poole <[email protected]>
AuthorDate: Mon Jun 1 18:55:22 2026 +0100

    disk: on first-run feedback earlier.
---
 src/bin/ui/evisum_ui_disk.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/bin/ui/evisum_ui_disk.c b/src/bin/ui/evisum_ui_disk.c
index 38ff6f9..4689e5e 100644
--- a/src/bin/ui/evisum_ui_disk.c
+++ b/src/bin/ui/evisum_ui_disk.c
@@ -463,6 +463,7 @@ _evisum_ui_disk_disks_poll(void *data, Ecore_Thread *thread) {
     Evisum_Ui_Disk_View *view = data;
     uint64_t seq = 0;
     int ticks = 9;
+    Eina_Bool populated = EINA_FALSE;
 
     while (!ecore_thread_check(thread)) {
         Eina_List *mounted;
@@ -474,7 +475,11 @@ _evisum_ui_disk_disks_poll(void *data, Ecore_Thread *thread) {
         if (ticks < 10) continue;
         ticks = 0;
         mounted = file_system_info_all_get();
-        if (!mounted) continue;
+        if (!mounted) {
+            if (!populated) ticks = 9;
+            continue;
+        }
+        populated = EINA_TRUE;
         ecore_thread_feedback(thread, mounted);
     }
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to