diff options
author | Owen Taylor <otaylor@src.gnome.org> | 1998-11-06 22:05:02 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-11-06 22:05:02 +0000 |
commit | e2a521922085c8010028e227f61bba59ea6b8242 (patch) | |
tree | 2500d6aa6f63aab4b58c17546532ecce8fdcca37 /gdk/gdkimage.c | |
parent | 3c0df19a588bd96f328bda975db8eb9fa7f79e81 (diff) | |
download | gtk+-e2a521922085c8010028e227f61bba59ea6b8242.tar.gz |
Merge from themes-2. See the ChangeLog for a somewhat detailed
history of the evolution of the changes involved. Most of this
is actually minor painting tweaks.
Diffstat (limited to 'gdk/gdkimage.c')
-rw-r--r-- | gdk/gdkimage.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdk/gdkimage.c b/gdk/gdkimage.c index 4d009f9f42..2cc850b532 100644 --- a/gdk/gdkimage.c +++ b/gdk/gdkimage.c @@ -353,7 +353,8 @@ gdk_image_get (GdkWindow *window, image->mem = private->ximage->data; image->bpl = private->ximage->bytes_per_line; - image->bpp = 1; + image->bpp = private->ximage->bits_per_pixel; + image->byte_order = private->ximage->byte_order; return image; } |