Show the number of colour components via Menu.

Conflicts:

	picviewer.lua
This commit is contained in:
Tigran Aivazian
2012-10-11 22:22:45 +01:00
committed by Qingping Hou
parent ee59fac328
commit 74a60eeea2

3
pic.c
View File

@@ -175,7 +175,8 @@ static int getOriginalPageSize(lua_State *L) {
PicDocument *doc = (PicDocument*) luaL_checkudata(L, 1, "picdocument");
lua_pushnumber(L, doc->width);
lua_pushnumber(L, doc->height);
return 2;
lua_pushnumber(L, doc->components);
return 3;
}
/* re-entrant */