aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-08-18 19:02:55 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-08-19 00:12:14 +0800
commit3f60db5fb3b3c80440d381e3a8fc1a52e1da700a (patch)
tree3a655dfedaaddcf381975a7764049efefe4fa283 /src
parentfe5db93073fa90597d86ae9d1500a6abaf49f3ae (diff)
downloadgsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.tar
gsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.tar.gz
gsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.tar.bz2
gsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.tar.lz
gsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.tar.xz
gsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.tar.zst
gsoc2013-empathy-3f60db5fb3b3c80440d381e3a8fc1a52e1da700a.zip
CallWindow: flip the dragged preview
Currently disabled as it doesn't work as expected. https://bugzilla.gnome.org/show_bug.cgi?id=656573
Diffstat (limited to 'src')
-rw-r--r--src/empathy-call-window.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 82da2b0d8..825aa0e6d 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -875,6 +875,17 @@ empathy_call_window_preview_on_drag_begin_cb (ClutterDragAction *action,
ClutterActor *stage = clutter_actor_get_stage (actor);
ClutterActor *preview = clutter_clone_new (actor);
+#if 0
+ /* Flip the video preview */
+ /* FIXME: disabled because it makes the drag handle to go away! */
+ clutter_actor_set_rotation (preview,
+ CLUTTER_Y_AXIS,
+ 180,
+ SELF_VIDEO_SECTION_WIDTH * 0.5,
+ 0.0,
+ 0.0);
+#endif
+
clutter_container_add_actor (CLUTTER_CONTAINER (stage), preview);
clutter_actor_set_position (preview, event_x, event_y);