mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
frei0r: fix nicknames for color and position properties
https://bugzilla.gnome.org/show_bug.cgi?id=695884
This commit is contained in:
parent
cd17445fa4
commit
53d33062e1
1 changed files with 4 additions and 4 deletions
|
@ -152,7 +152,7 @@ gst_frei0r_klass_install_properties (GObjectClass * gobject_class,
|
|||
prop_name_full = g_strconcat (prop_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, param_info->name,
|
||||
g_param_spec_float (prop_name_full, prop_nick_full,
|
||||
param_info->explanation, 0.0, 1.0, def,
|
||||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
|
||||
g_free (prop_name_full);
|
||||
|
@ -165,7 +165,7 @@ gst_frei0r_klass_install_properties (GObjectClass * gobject_class,
|
|||
prop_name_full = g_strconcat (prop_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, param_info->name,
|
||||
g_param_spec_float (prop_name_full, prop_nick_full,
|
||||
param_info->explanation, 0.0, 1.0, def,
|
||||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
|
||||
g_free (prop_name_full);
|
||||
|
@ -186,7 +186,7 @@ gst_frei0r_klass_install_properties (GObjectClass * gobject_class,
|
|||
prop_name_full = g_strconcat (prop_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, param_info->name,
|
||||
g_param_spec_double (prop_name_full, prop_nick_full,
|
||||
param_info->explanation, 0.0, 1.0, def,
|
||||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
|
||||
g_free (prop_name_full);
|
||||
|
@ -199,7 +199,7 @@ gst_frei0r_klass_install_properties (GObjectClass * gobject_class,
|
|||
prop_name_full = g_strconcat (prop_name, "-Y", 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, param_info->name,
|
||||
g_param_spec_double (prop_name_full, prop_nick_full,
|
||||
param_info->explanation, 0.0, 1.0, def,
|
||||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
|
||||
g_free (prop_name_full);
|
||||
|
|
Loading…
Reference in a new issue