cellrenderertoggle: Use the cell renderer's state flags as a base for rendering

This allows us to pick the underlying widget's state flags that we don't
explicitly set here.
This commit is contained in:
Rui Matos 2011-12-16 19:49:31 +00:00
parent 42d2a1984c
commit 70970146ca

View File

@ -363,10 +363,12 @@ gtk_cell_renderer_toggle_render (GtkCellRenderer *cell,
if (width <= 0 || height <= 0) if (width <= 0 || height <= 0)
return; return;
state = gtk_cell_renderer_get_state (cell, widget, flags);
if (!priv->activatable) if (!priv->activatable)
state = GTK_STATE_FLAG_INSENSITIVE; state |= GTK_STATE_FLAG_INSENSITIVE;
else
state = gtk_cell_renderer_get_state (cell, widget, flags); state &= ~(GTK_STATE_FLAG_INCONSISTENT | GTK_STATE_FLAG_ACTIVE);
if (priv->inconsistent) if (priv->inconsistent)
state |= GTK_STATE_FLAG_INCONSISTENT; state |= GTK_STATE_FLAG_INCONSISTENT;