]> Dogcows Code - chaz/openbox/commitdiff
finally fix broken gimp window icons
authorMikael Magnusson <mikachu@comhem.se>
Sun, 5 Mar 2006 23:23:55 +0000 (23:23 +0000)
committerMikael Magnusson <mikachu@comhem.se>
Sun, 5 Mar 2006 23:23:55 +0000 (23:23 +0000)
CHANGELOG
render/image.c

index d4e69cc01fba9c5ee0382a04f862ffbea3d9b4dc..647d0ce77dd289f755c0fe2ac2dc66ac65902ae7 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,8 @@
   * 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
index 393afe84973babece9e74a974ae9104992323b32..0479f39b81dd59ccec3e78a5cf06b2939bb166cd 100644 (file)
@@ -182,7 +182,7 @@ void RrImageDraw(RrPixel32 *target, RrTextureRGBA *rgba,
         dest++;
         source++;
 
-        if (col++ >= dw) {
+        if (++col >= dw) {
             col = 0;
             dest += target_w - dw;
         }
This page took 0.020179 seconds and 4 git commands to generate.