add missing return statement to max_dimension_use_zoom lua binding

This commit is contained in:
freem
2014-09-04 20:10:02 -05:00
parent 92a6d7be0f
commit 4f84621244
+1
View File
@@ -872,6 +872,7 @@ public:
static int max_dimension_use_zoom(T* p, lua_State* L)
{
p->SetMaxDimUseZoom(lua_toboolean(L, 1));
return 0;
}
static int vertspacing( T* p, lua_State *L ) { p->SetVertSpacing( IArg(1) ); return 0; }
static int settext( T* p, lua_State *L )