Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Immanuel
/
sxiv
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Correctly updated window pixmap after i_fit_to_img()
master
Bert Münnich
12 anni fa
parent
e810072d71
commit
f7301cf4f9
1 ha cambiato i file
con
5 aggiunte
e
0 eliminazioni
Visualizzazione unificata
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
window.c
+ 5
- 0
window.c
Vedi File
@@ -305,6 +305,11 @@ bool win_moveresize(win_t *win, int x, int y, unsigned int w, unsigned int h)
XMoveResizeWindow(win->env.dpy, win->xwin, x, y, w, h);
XMoveResizeWindow(win->env.dpy, win->xwin, x, y, w, h);
if (win->pm != None) {
XFreePixmap(win->env.dpy, win->pm);
win->pm = None;
}
return true;
return true;
}
}
Write
Preview
Loading…
Annulla
Salva