summaryrefslogtreecommitdiffstats
path: root/tools/gui
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gui')
-rw-r--r--tools/gui/control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gui/control.c b/tools/gui/control.c
index eab2be7..5e8860f 100644
--- a/tools/gui/control.c
+++ b/tools/gui/control.c
@@ -205,8 +205,6 @@ on_start_button_clicked (GtkWidget *widget, gpointer args)
ThreadData *data = (ThreadData *) args;
GError *error = NULL;
- data->state = RUNNING;
-
set_tool_button_state (data);
uca_camera_start_recording (data->camera, &error);
@@ -219,6 +217,8 @@ on_start_button_clicked (GtkWidget *widget, gpointer args)
g_printerr ("Failed to create thread: %s\n", error->message);
return;
}
+
+ data->state = RUNNING;
}
static void