Commit 183121c23bf349ccb35533244f75364ef1b9aa4e

Thomas de Grivel 2020-05-05T17:33:51

remove printf

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/gtk/rtbuf_gtk.c b/gtk/rtbuf_gtk.c
index aa7aaf5..d948b07 100644
--- a/gtk/rtbuf_gtk.c
+++ b/gtk/rtbuf_gtk.c
@@ -331,7 +331,7 @@ gboolean rtbuf_gtk_modular_motion (GtkWidget       *widget,
         gtk_widget_get_window(GTK_WIDGET(modular_layout));
       gdk_window_get_device_position(window, event->device,
                                      &x, &y, NULL);
-      printf("rtbuf-gtk modular drag motion %i %i\n", x, y);
+      /* printf("rtbuf-gtk modular drag motion %i %i\n", x, y); */
       gtk_layout_move(modular_layout, drag_widget, x - drag_x,
                       y - drag_y);
       return TRUE;