composetable: Remove a redundant check

We already know seq_index is not NULL here.

Pointed out in https://www.viva64.com/en/b/0793/
This commit is contained in:
Matthias Clasen 2021-02-04 00:22:52 -05:00
parent 927fdb9a83
commit e91e75173d

View File

@ -1038,7 +1038,7 @@ gtk_compose_table_compact_check (const GtkComposeTableCompact *table,
if (!seq_index)
return FALSE;
if (seq_index && n_compose == 1)
if (n_compose == 1)
return TRUE;
seq = NULL;