all repos — tint2 @ 4dafea185f10b84911926c17668ea05362c1327f

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

thumbnails: do not crash if window size is 0x0
Chris Lee @klee93
commit

4dafea185f10b84911926c17668ea05362c1327f

parent

77890d463a49a7d5f038911e7e4b06a1c94ee7b8

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M src/util/window.csrc/util/window.c

@@ -414,6 +414,8 @@ } else {

fw = tw; ox = oy = 0; } + if (!w || !h || !tw || !th || !fw) + goto err0; XShmSegmentInfo shminfo; XImage *ximg;