$ git clone http://tcclient.ion.nu/tc_client.git
commit 881a653852bcb6bfe4b4f80d6c278d0857e22a9e
Author: Alicia <...>
Date:   Tue May 3 07:29:27 2016 +0200

    tc_client-gtk: bugfix: set the state of the checkboxes for horizontal and vertical flip when opening the colors/postprocessing window.

diff --git a/utilities/gtk/gui.c b/utilities/gtk/gui.c
index 4f25dca..ee59d7f 100644
--- a/utilities/gtk/gui.c
+++ b/utilities/gtk/gui.c
@@ -476,6 +476,8 @@ void gui_show_camcolors(GtkMenuItem* menuitem, void* x)
   adjustment=GTK_ADJUSTMENT(gtk_builder_get_object(gui, "camcolors_max_brightness"));
   gtk_adjustment_set_value(adjustment, cam->postproc.max_brightness);
   gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(gtk_builder_get_object(gui, "camcolors_auto")), cam->postproc.autoadjust);
+  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(gtk_builder_get_object(gui, "camcolors_flip_horizontal")), cam->postproc.flip_horizontal);
+  gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(gtk_builder_get_object(gui, "camcolors_flip_vertical")), cam->postproc.flip_vertical);
 }
 
 void camcolors_adjust_min(GtkAdjustment* adjustment, void* x)