all repos — openbox @ 31527192c84918b793a0203514465081e9f2e5f1

openbox fork - make it a bit more like ryudo

finally fix broken gimp window icons
Mikael Magnusson mikachu@comhem.se
commit

31527192c84918b793a0203514465081e9f2e5f1

parent

b67420f9c03b3d15d9a7977214abc0f8e2e2e51d

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

jump to
M CHANGELOGCHANGELOG

@@ -2,6 +2,8 @@ 3.3:

* Add a showDelay option for the dock. * Fixed onscreen-keeping code which broke a bit in -rc2. * Fix incorrect handling of window properties on 64 bit arches. + * Fix pixelsize being the same as size for pango, now it is correct. + * Fix drawing of icons taller than wide, eg gimp. 3.3-rc2: * Fixed some typos and errors in rc.xsd
M render/image.crender/image.c

@@ -182,7 +182,7 @@

dest++; source++; - if (col++ >= dw) { + if (++col >= dw) { col = 0; dest += target_w - dw; }