From: DL1YCF <dl1ycf@darc.de>
Date: Sun, 22 Aug 2021 11:02:01 +0000 (+0200)
Subject: More delay in "status text" display loop
X-Git-Url: https://git.rkrishnan.org/components/vdrive/banana.xhtml?a=commitdiff_plain;h=a195b20693d1ab53ebd049dc4d25b36102e6887b;p=pihpsdr.git

More delay in "status text" display loop
---

diff --git a/main.c b/main.c
index 15b031b..cd13802 100644
--- a/main.c
+++ b/main.c
@@ -87,7 +87,7 @@ static GtkWidget *status;
 void status_text(char *text) {
   //fprintf(stderr,"splash_status: %s\n",text);
   gtk_label_set_text(GTK_LABEL(status),text);
-  usleep(10000);
+  usleep(100000);
   while (gtk_events_pending ())
     gtk_main_iteration ();
 }