Correctly read a textbox' ellipsize and wrap properties
The old code used the wrong constants which meant we always returned "word" for wrap and "end" for ellipsize. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
ce4088bbf7
commit
8cbfd442a0
|
@ -301,10 +301,10 @@ luaA_textbox_index(lua_State *L, awesome_token_t token)
|
|||
default:
|
||||
lua_pushliteral(L, "word");
|
||||
break;
|
||||
case A_TK_CHAR:
|
||||
case PANGO_WRAP_CHAR:
|
||||
lua_pushliteral(L, "char");
|
||||
break;
|
||||
case A_TK_WORD_CHAR:
|
||||
case PANGO_WRAP_WORD_CHAR:
|
||||
lua_pushliteral(L, "word_char");
|
||||
break;
|
||||
}
|
||||
|
@ -312,10 +312,10 @@ luaA_textbox_index(lua_State *L, awesome_token_t token)
|
|||
case A_TK_ELLIPSIZE:
|
||||
switch(d->ellip)
|
||||
{
|
||||
case A_TK_START:
|
||||
case PANGO_ELLIPSIZE_START:
|
||||
lua_pushliteral(L, "start");
|
||||
break;
|
||||
case A_TK_MIDDLE:
|
||||
case PANGO_ELLIPSIZE_MIDDLE:
|
||||
lua_pushliteral(L, "middle");
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue