summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2006-03-05 23:23:55 +0000
committerMikael Magnusson <mikachu@comhem.se>2006-03-05 23:23:55 +0000
commit31527192c84918b793a0203514465081e9f2e5f1 (patch)
treefb6d0322577cae22557ee8f0329f898c6896b6a5
parentb67420f9c03b3d15d9a7977214abc0f8e2e2e51d (diff)
finally fix broken gimp window icons
-rw-r--r--CHANGELOG2
-rw-r--r--render/image.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d4e69cc0..647d0ce7 100644
--- 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
diff --git a/render/image.c b/render/image.c
index 393afe84..0479f39b 100644
--- a/render/image.c
+++ b/render/image.c
@@ -182,7 +182,7 @@ void RrImageDraw(RrPixel32 *target, RrTextureRGBA *rgba,
dest++;
source++;
- if (col++ >= dw) {
+ if (++col >= dw) {
col = 0;
dest += target_w - dw;
}