mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-21 05:33:45 -04:00
term_remove_all_multi_cursors(): early return if no extra cursors are active
This commit is contained in:
parent
fba9bb6853
commit
1055d32e9f
2 changed files with 9 additions and 4 deletions
|
|
@ -2117,6 +2117,13 @@ term_theme_apply(struct terminal *term, const struct color_theme *theme)
|
|||
void
|
||||
term_remove_all_multi_cursors(struct terminal *term)
|
||||
{
|
||||
if (term->multi_cursor.shapes == NULL) {
|
||||
#if defined(_DEBUG)
|
||||
xassert(pixman_region32_empty(&term->multi_cursor.active));
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
|
||||
pixman_region32_fini(&term->multi_cursor.active);
|
||||
pixman_region32_init(&term->multi_cursor.active);
|
||||
free(term->multi_cursor.shapes);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue