]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Show restart button, but not with SOAPY
authorc vw <dl1ycf@darc.de>
Tue, 20 Jul 2021 15:38:32 +0000 (17:38 +0200)
committerc vw <dl1ycf@darc.de>
Tue, 20 Jul 2021 15:38:32 +0000 (17:38 +0200)
new_menu.c

index ae12557a6d78a7927219efb4970f8d0d72492208..4da1fbf96f8b89e64246cdf420e93af35e267014 100644 (file)
@@ -108,7 +108,6 @@ static gboolean close_cb (GtkWidget *widget, GdkEventButton *event, gpointer dat
   return TRUE;
 }
 
-#ifdef RESTART_BUTTON
 //
 // The "Restart" button restarts the protocol
 // This may help to recover from certain error conditions
@@ -133,7 +132,6 @@ static gboolean restart_cb (GtkWidget *widget, GdkEventButton *event, gpointer d
   }
   return TRUE;
 }
-#endif
 
 static gboolean about_b_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) {
   cleanup();
@@ -492,15 +490,16 @@ void new_menu()
     g_signal_connect (close_b, "button-press-event", G_CALLBACK(close_cb), NULL);
     gtk_grid_attach(GTK_GRID(grid),close_b,0,0,2,1);
 
-#ifdef RESTART_BUTTON
     //
     // The "Restart" restarts the protocol
     // This may help to recover from certain error conditions
+    // At the moment I do not know how to do this for SOAPY
     //
-    GtkWidget *restart_b=gtk_button_new_with_label("Restart");
-    g_signal_connect (restart_b, "button-press-event", G_CALLBACK(restart_cb), NULL);
-    gtk_grid_attach(GTK_GRID(grid),restart_b,2,0,2,1);
-#endif
+    if (protocol != SOAPYSDR_PROTOCOL) {
+      GtkWidget *restart_b=gtk_button_new_with_label("Restart");
+      g_signal_connect (restart_b, "button-press-event", G_CALLBACK(restart_cb), NULL);
+      gtk_grid_attach(GTK_GRID(grid),restart_b,2,0,2,1);
+    }
 
     GtkWidget *exit_b=gtk_button_new_with_label("Exit piHPSDR");
     g_signal_connect (exit_b, "button-press-event", G_CALLBACK(exit_cb), NULL);