forked from AuroraMiddleware/gtk
Fix handling of GtkCellRendererProgress::inverted
We were setting the wrong field. https://bugzilla.redhat.com/show_bug.cgi?id=747761
This commit is contained in:
parent
ccdc3c1802
commit
cd91ab9761
@ -355,7 +355,7 @@ gtk_cell_renderer_progress_set_property (GObject *object,
|
||||
priv->orientation = g_value_get_enum (value);
|
||||
break;
|
||||
case PROP_INVERTED:
|
||||
priv->orientation = g_value_get_boolean (value);
|
||||
priv->inverted = g_value_get_boolean (value);
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
||||
|
Loading…
Reference in New Issue
Block a user