if (str_value != NULL && g_strcmp0 (g_strstrip (str_value), "") != 0)
{
- str_format = g_strdup_printf ("%%0%dd", 6 - (str_comma != NULL ? strlen (str_comma) - 1 : 0));
+ if (str_comma == NULL)
+ {
+ str_format = g_strdup ("%%06d");
+ }
+ else
+ {
+ if (strlen (str_comma) < 6)
+ {
+ str_format = g_strdup_printf ("%%0%dd", 6 - strlen (str_comma) - 1);
+ }
+ else
+ {
+ if (strlen (str_comma) > 6)
+ {
+ str_value = g_strndup (str_value, strlen (str_value) - strlen (str_comma) + 7);
+ }
+ str_format = NULL;
+ }
+ }
+
if (g_strcmp0 (g_strdup_printf ("%f", dbl_value), g_strdup_printf (g_strconcat ("%s", (str_comma == NULL ? "," : ""), str_format, NULL), str_value, 0)) != 0)
{
g_free (str_value);
#include <glib/gi18n-lib.h>
#include "widget.h"
+#include "widgetspin.h"
#include "fieldinteger.h"
enum
if (str_value != NULL && g_strcmp0 (g_strstrip (str_value), "") != 0)
{
- if (g_strcmp0 (g_strdup_printf ("%d", value), str_value) != 0)
+ if (g_strcmp0 (g_strconcat (g_strdup_printf ("%d", value),
+ IS_GTK_FORM_WIDGET_SPIN (fw) ? g_strdup_printf (",%06d", 0) : "", NULL),
+ str_value) != 0)
{
g_free (str_value);
return FALSE;