mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-07 04:34:03 -05:00
url-mode: purge SHM pixmaps when destroying URLs
Unlike other surface types, the SHM cookie depends on the address of each URL instance. This means if we enable, disable, and then enable URL mode again (thus showing exactly the same URLs as the first time), the URLs will have new addresses, and thus the old SHM pixmaps will not get purged automatically. So, manually purge them when destroying the URLs.
This commit is contained in:
parent
24dd44634a
commit
0a6e7e6167
3 changed files with 10 additions and 0 deletions
|
|
@ -14,6 +14,7 @@
|
|||
#include "grid.h"
|
||||
#include "render.h"
|
||||
#include "selection.h"
|
||||
#include "shm.h"
|
||||
#include "spawn.h"
|
||||
#include "terminal.h"
|
||||
#include "uri.h"
|
||||
|
|
@ -728,7 +729,9 @@ urls_reset(struct terminal *term)
|
|||
|
||||
if (term->window != NULL) {
|
||||
tll_foreach(term->window->urls, it) {
|
||||
const struct url *url = it->item.url;
|
||||
wayl_win_subsurface_destroy(&it->item.surf);
|
||||
shm_purge(term->wl->shm, shm_cookie_url(url));
|
||||
tll_remove(term->window->urls, it);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue