1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | Index: b/src/totem-object.c
===================================================================
--- a/src/totem-object.c
+++ b/src/totem-object.c
@@ -3684,6 +3684,11 @@
else {
headerbox = GTK_WIDGET (gtk_builder_get_object (totem->xml, "totem_main_vbox"));
gtk_box_pack_start (GTK_BOX(headerbox), totem->header, FALSE, FALSE, 0);
+ g_object_bind_property (totem,
+ "fullscreen",
+ totem->header,
+ "visible",
+ G_BINDING_INVERT_BOOLEAN);
}
return;
}
|