After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 696647 - Currency format won't let me select a currency symbol
Currency format won't let me select a currency symbol
Status: RESOLVED FIXED
Product: libgoffice
Classification: Other
Component: Gtk+
GIT
Other Linux
: Normal normal
: ---
Assigned To: Jody Goldberg
Jody Goldberg
Depends on:
Blocks:
 
 
Reported: 2013-03-26 15:13 UTC by Adam Dingle
Modified: 2013-03-27 13:00 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Adam Dingle 2013-03-26 15:13:36 UTC
I'm running Gnumeric 1.12.1 on Ubuntu 13.04 (Raring).  When I select cells and open the Format Cells dialog, the Currency format doesn't provide a field for selecting a currency symbol.  I'm pretty sure that in earlier versions of Gnumeric the field was there.

(As a workaround, I can select the Accounting format, choose a currency symbol there, then switch back to the Currency format - the symbol I selected in Accounting will be used in Currency.)
Comment 1 Andreas J. Guelzow 2013-03-26 22:11:40 UTC
The code in go-format-sel.c indicates that the symbol seelctor should be shown for currency too:

	/* Setup handler Currency & Accounting currency symbols */

...

		/* Currency */
		{
			F_CURRENCY_EXPLANATION,
			F_DECIMAL_GRID,
			F_DECIMAL_LABEL,
			F_DECIMAL_SPIN,
			F_SEPARATOR,
			F_SYMBOL_LABEL,
			F_SYMBOL,
			F_NEGATIVE_LABEL,
			F_NEGATIVE_SCROLL,
			F_NEGATIVE,
			F_MAX_WIDGET
		},
		/* Accounting */
		{
			F_ACCOUNTING_EXPLANATION,
			F_DECIMAL_GRID,
			F_DECIMAL_LABEL,
			F_DECIMAL_SPIN,
			F_SYMBOL_LABEL,
			F_SYMBOL,
			F_MAX_WIDGET
		},

It is not clear to me why it isn't shown (unless it is in fact shown but located behind the format listing).
Comment 2 Jean Bréfort 2013-03-27 12:43:06 UTC
My bad, apologies.

This problem has been fixed in our software repository. The fix will go into the next software release. Thank you for your bug report.
Comment 3 Adam Dingle 2013-03-27 12:44:18 UTC
Fantastic - thanks for the quick fix!
Comment 4 Jean Bréfort 2013-03-27 13:00:06 UTC
I just hope I did not break something else, this dialog box is a bit complex.