From 3d0e2baf4efae2b14367ab799230ada262b7e318 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sun, 11 May 2014 06:59:31 -0700 Subject: [PATCH] Force the video display to LTR layout direction Mirroring the video is not useful or desirable. See #1354. --- src/video_display.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video_display.cpp b/src/video_display.cpp index c06231941..3a955a10a 100644 --- a/src/video_display.cpp +++ b/src/video_display.cpp @@ -134,6 +134,8 @@ VideoDisplay::VideoDisplay( if (con->videoController->IsLoaded()) con->videoController->JumpToFrame(con->videoController->GetFrameN()); + + SetLayoutDirection(wxLayout_LeftToRight); } VideoDisplay::~VideoDisplay () {