diff --git a/titlebar.c b/titlebar.c
index de2084a6..93a146f6 100644
--- a/titlebar.c
+++ b/titlebar.c
@@ -412,9 +412,9 @@ luaA_titlebar_new(lua_State *L)
*tb = p_new(titlebar_t, 1);
objpos = lua_gettop(L);
- (*tb)->text_normal = a_strdup(luaA_getopt_string(L, 1, "normal", "
"));
- (*tb)->text_focus = a_strdup(luaA_getopt_string(L, 1, "focus", ""));
- (*tb)->text_urgent = a_strdup(luaA_getopt_string(L, 1, "urgent", ""));
+ (*tb)->text_normal = a_strdup(luaA_getopt_string(L, 1, "text_normal", ""));
+ (*tb)->text_focus = a_strdup(luaA_getopt_string(L, 1, "text_focus", ""));
+ (*tb)->text_urgent = a_strdup(luaA_getopt_string(L, 1, "text_urgent", ""));
(*tb)->align = draw_align_get_from_str(luaA_getopt_string(L, 1, "align", "left"));