[vlc-commits] lua: fixes right OSD alignment (refs #6326)

Rémi Denis-Courmont git at videolan.org
Thu Nov 8 18:13:44 CET 2012


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Nov  8 19:13:14 2012 +0200| [eeb201b9b0823b88b69372ced5f674cba66a461f] | committer: Rémi Denis-Courmont

lua: fixes right OSD alignment (refs #6326)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eeb201b9b0823b88b69372ced5f674cba66a461f
---

 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 4a30b12..1b60eee 100644
--- a/modules/lua/libs/osd.c
+++ b/modules/lua/libs/osd.c
@@ -94,7 +94,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