gimp-developer  

Bug fix for #37633

Dave Neary
Wed, 14 Feb 2001 02:24:35 -0800



Hi all,

I have already attached this to bugzilla, but since I'm not sure 
how quick the uptake is on fixes submitted in that way (and 
since it's small), I'll send it here too :)

This basically make File->Revert work right after a display has 
been re-sized.

Cheers,
Dave.

-- 
  .------------------------------.
 /          David Neary,          \
|     E-Mail [EMAIL PROTECTED]     | 
 \     Phone +353-1-872-0654      /
  `------------------------------'
Index: fileops.c
===================================================================
RCS file: /cvs/gnome/gimp/app/fileops.c,v
retrieving revision 1.137
diff -u -r1.137 fileops.c
--- fileops.c   2001/02/07 15:01:51     1.137
+++ fileops.c   2001/02/13 15:34:39
@@ -2050,6 +2050,9 @@
        {
          undo_free (new_gimage);
          gdisplays_reconnect (old_gimage, new_gimage);
+         gdisplays_resize_cursor_label (new_gimage);
+         gdisplays_update_full (new_gimage);
+         gdisplays_shrink_wrap (new_gimage);
          gimp_image_clean_all (new_gimage);
        }
       else if (status != PDB_CANCEL)
  • Bug fix for #37633 Dave Neary