Merge branch 'entry-off-by-one-fix' into 'master'
util: Fix off-by-one in calls_entry_append Closes #70 See merge request Librem5/calls!55
This commit is contained in:
@@ -83,5 +83,5 @@ calls_entry_append (GtkEntry *entry,
|
||||
buf = gtk_entry_get_buffer (entry);
|
||||
len = gtk_entry_buffer_get_length (buf);
|
||||
|
||||
gtk_entry_buffer_insert_text (buf, len - 1, str, 1);
|
||||
gtk_entry_buffer_insert_text (buf, len, str, 1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user