[vlc-commits] lua: fix right OSD alignment (refs #6326)
Rémi Denis-Courmont
git at videolan.org
Thu Nov 8 18:14:59 CET 2012
vlc/vlc-2.0 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Nov 8 19:13:14 2012 +0200| [d6f426a044c6db5d9667210b56e4361b18bf27b4] | committer: Rémi Denis-Courmont
lua: fix right OSD alignment (refs #6326)
(cherry picked from commit eeb201b9b0823b88b69372ced5f674cba66a461f)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=d6f426a044c6db5d9667210b56e4361b18bf27b4
---
modules/lua/libs/osd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/lua/libs/osd.c b/modules/lua/libs/osd.c
index ab06907..9843a0d 100644
--- a/modules/lua/libs/osd.c
+++ b/modules/lua/libs/osd.c
@@ -97,7 +97,7 @@ static int vlc_osd_position_from_string( const char *psz_name )
} pp_icons[] =
{ { 0, "center" },
{ SUBPICTURE_ALIGN_LEFT, "left" },
- { SUBPICTURE_ALIGN_RIGHT, "rigth" },
+ { SUBPICTURE_ALIGN_RIGHT, "right" },
{ SUBPICTURE_ALIGN_TOP, "top" },
{ SUBPICTURE_ALIGN_BOTTOM, "bottom" },
{ SUBPICTURE_ALIGN_TOP |SUBPICTURE_ALIGN_LEFT, "top-left" },
More information about the vlc-commits
mailing list