chiark / gitweb /
remove debugging guff, sorry
[disorder] / disobedience / control.c
index cb2d63c04cb75bc3e7db9da1d1f942e4af796dd5..ba5b2025a9de404780b727bde64f20a7133267b1 100644 (file)
@@ -175,10 +175,8 @@ void control_update(void) {
 static void control_monitor(void attribute((unused)) *u) {
   int n;
 
-  fprintf(stderr, "control_monitor\n");
   for(n = 0; n < NICONS; ++n)
     icons[n].update(&icons[n]);
-  fprintf(stderr, "\n");
 }
 
 /** @brief Update the state of one of the control icons
@@ -198,7 +196,6 @@ static void update_icon(const struct icon *icon,
   /* If the connection is down nothing is ever usable */
   if(!(last_state & DISORDER_CONNECTED))
     usable = 0;
-  fprintf(stderr, "%s usable=%d visible=%d\n", icon->tip, usable, visible);
   (visible ? gtk_widget_show : gtk_widget_hide)(icon->button);
   /* Only both updating usability if the button is visible */
   if(visible)