[totem] main: Fix default swipe seek length



commit 0559af00a6838b84eb443c12d7a4f5bde09e554f
Author: Bastien Nocera <hadess hadess net>
Date:   Fri Feb 14 04:20:36 2014 +0100

    main: Fix default swipe seek length
    
    It's supposed to be the same as the keyboard arrows.

 src/totem-object.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/totem-object.c b/src/totem-object.c
index fc75d7c..9cc86dd 100644
--- a/src/totem-object.c
+++ b/src/totem-object.c
@@ -3346,7 +3346,7 @@ on_seek_requested_event (BaconVideoWidget *bvw,
 {
        gint64 offset;
 
-       offset = forward ? SEEK_FORWARD_SHORT_OFFSET * 1000 : SEEK_BACKWARD_SHORT_OFFSET * 1000;
+       offset = forward ? SEEK_FORWARD_OFFSET * 1000 : SEEK_BACKWARD_OFFSET * 1000;
        totem_object_seek_relative (totem, offset, FALSE);
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]