if (!(def <= 1.0 && def >= 0.0))
def = 0.0;
prop_name_full = g_strconcat (prop_name, "-r", NULL);
- prop_nick_full = g_strconcat (param_info->name, "-R", NULL);
+ prop_nick_full = g_strconcat (param_info->name, " (R)", NULL);
g_object_class_install_property (gobject_class, count++,
g_param_spec_float (prop_name_full, prop_nick_full,
param_info->explanation, 0.0, 1.0, def,
if (!(def <= 1.0 && def >= 0.0))
def = 0.0;
prop_name_full = g_strconcat (prop_name, "-g", NULL);
- prop_nick_full = g_strconcat (param_info->name, "-G", NULL);
+ prop_nick_full = g_strconcat (param_info->name, " (G)", NULL);
g_object_class_install_property (gobject_class, count++,
g_param_spec_float (prop_name_full, prop_nick_full,
param_info->explanation, 0.0, 1.0, def,
if (!(def <= 1.0 && def >= 0.0))
def = 0.0;
prop_name_full = g_strconcat (prop_name, "-b", NULL);
- prop_nick_full = g_strconcat (param_info->name, "-B", NULL);
+ prop_nick_full = g_strconcat (param_info->name, " (B)", NULL);
g_object_class_install_property (gobject_class, count++,
g_param_spec_float (prop_name_full, prop_nick_full,
param_info->explanation, 0.0, 1.0, def,
if (!(def <= 1.0 && def >= 0.0))
def = 0.0;
prop_name_full = g_strconcat (prop_name, "-x", NULL);
- prop_nick_full = g_strconcat (param_info->name, "-X", NULL);
+ prop_nick_full = g_strconcat (param_info->name, " (X)", NULL);
g_object_class_install_property (gobject_class, count++,
g_param_spec_double (prop_name_full, prop_nick_full,
param_info->explanation, 0.0, 1.0, def,
if (!(def <= 1.0 && def >= 0.0))
def = 0.0;
prop_name_full = g_strconcat (prop_name, "-Y", NULL);
- prop_nick_full = g_strconcat (param_info->name, "-X", NULL);
+ prop_nick_full = g_strconcat (param_info->name, " (Y)", NULL);
g_object_class_install_property (gobject_class, count++,
g_param_spec_double (prop_name_full, prop_nick_full,
param_info->explanation, 0.0, 1.0, def,