From 483a31793ec45f73a58e9bdbc3060e9e698cb8e4 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 5 Apr 2012 15:00:29 +0200 Subject: capture: Queue a redraw when releasing the rubberband --- capture.c | 1 + 1 file changed, 1 insertion(+) diff --git a/capture.c b/capture.c index 49d360b..0f9a8c4 100644 --- a/capture.c +++ b/capture.c @@ -131,6 +131,7 @@ button_release_event(GtkWidget *widget, GdkEventButton *event, gpointer userdata return TRUE; ct->doing_rubberband = FALSE; + gtk_widget_queue_draw(ct->drawing_area); return FALSE; } -- cgit