GNOME Bugzilla – Bug 599233
Dialog of "Save as BMP" ignores changes which are not made with a mouse
Last modified: 2010-03-11 07:45:55 UTC
When using "Save As" to save an image as BMP, after entering the name of the file, a new Dialog appears showing "Advanced Options". If these advanced options are modified (The default is 24-bit RGB-888) WITHOUT using a mouse (i.e. using only the TAB and SPACEBAR keys), the changes do not take effect, and the image will be stored as 24-bit RGB-888 (default setting).
Created attachment 155760 [details] [review] Proposed patch In file 'plug-ins/file-bmp/bmp-write.c' several GtkRadioButtons are connected to the signal 'pressed' ('GtkButton::pressed' is deprecated according to GTK+'s documentation since version 2.8). Connecting the corresponding callback to signal 'clicked' instead, fixes the problem described here.
Thanks. Committed and pushed to both branches: commit bc02c2f51ee31588ceb8b9d9aebaf1557fe4119c Author: Massimo Valentini <sixtysix@inwind.it> Date: Thu Mar 11 08:42:19 2010 +0100 Bug 599233 - Dialog of "Save as BMP" ignores changes which are not made with Connect to GtkButton::clicked instead of GtkButton::pressed.