finally fix broken gimp window icons
This commit is contained in:
parent
b67420f9c0
commit
31527192c8
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -182,7 +182,7 @@ void RrImageDraw(RrPixel32 *target, RrTextureRGBA *rgba,
|
|||
dest++;
|
||||
source++;
|
||||
|
||||
if (col++ >= dw) {
|
||||
if (++col >= dw) {
|
||||
col = 0;
|
||||
dest += target_w - dw;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue