editor: fix assert to take preedit string into account

This commit is contained in:
Philipp Brüschweiler 2012-10-02 11:06:51 +02:00 committed by Kristian Høgsberg
parent 3b132e358f
commit 237358be93
1 changed files with 2 additions and 1 deletions

View File

@ -500,7 +500,8 @@ text_entry_update_layout(struct text_entry *entry)
{
char *text;
assert(((unsigned int)entry->cursor) <= strlen(entry->text));
assert(((unsigned int)entry->cursor) <= strlen(entry->text) +
(entry->preedit_text ? strlen(entry->preedit_text) : 0));
if (!entry->preedit_text) {
text_layout_set_text(entry->layout, entry->text);