Author: mjc
Date: Mon Jan 28 20:15:46 2008
New Revision: 2226
URL: http://svn.gnome.org/viewvc/gthumb?rev=2226&view=rev
Log:
2008-01-28 Michael J. Chudobiak <[EMAIL PROTECTED]>
* NEWS:
* src/gth-browser.c: (save_pixbuf__image_saved_cb):
* src/gth-viewer.c: (save_pixbuf__image_saved_cb):
Fixed bug #510521 - Canceling Save stops movement between pictures.
Patch by Manuel Braga <[EMAIL PROTECTED]>.
Modified:
branches/gthumb-2-10/ChangeLog
branches/gthumb-2-10/NEWS
branches/gthumb-2-10/src/gth-browser.c
branches/gthumb-2-10/src/gth-viewer.c
Modified: branches/gthumb-2-10/NEWS
==============================================================================
--- branches/gthumb-2-10/NEWS (original)
+++ branches/gthumb-2-10/NEWS Mon Jan 28 20:15:46 2008
@@ -3,6 +3,7 @@
* Fixed bug #508873 - gthumb cannot scale up images
* Fixed bug #510326 - x-content/* support
+ * Fixed bug #510521 - Canceling Save stops movement between pictures
version 2.10.8
--------------
Modified: branches/gthumb-2-10/src/gth-browser.c
==============================================================================
--- branches/gthumb-2-10/src/gth-browser.c (original)
+++ branches/gthumb-2-10/src/gth-browser.c Mon Jan 28 20:15:46 2008
@@ -1821,6 +1821,8 @@
file,
save_pixbuf__jpeg_data_saved_cb,
browser);
+ else
+ browser->priv->saving_modified_image = FALSE;
}
Modified: branches/gthumb-2-10/src/gth-viewer.c
==============================================================================
--- branches/gthumb-2-10/src/gth-viewer.c (original)
+++ branches/gthumb-2-10/src/gth-viewer.c Mon Jan 28 20:15:46 2008
@@ -942,6 +942,8 @@
file,
save_pixbuf__jpeg_data_saved_cb,
viewer);
+ else
+ viewer->priv->saving_modified_image = FALSE;
}
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.