mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 14:31:10 +00:00
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:
parent
42d2a1984c
commit
70970146ca
@ -363,10 +363,12 @@ gtk_cell_renderer_toggle_render (GtkCellRenderer *cell,
|
||||
if (width <= 0 || height <= 0)
|
||||
return;
|
||||
|
||||
state = gtk_cell_renderer_get_state (cell, widget, flags);
|
||||
|
||||
if (!priv->activatable)
|
||||
state = GTK_STATE_FLAG_INSENSITIVE;
|
||||
else
|
||||
state = gtk_cell_renderer_get_state (cell, widget, flags);
|
||||
state |= GTK_STATE_FLAG_INSENSITIVE;
|
||||
|
||||
state &= ~(GTK_STATE_FLAG_INCONSISTENT | GTK_STATE_FLAG_ACTIVE);
|
||||
|
||||
if (priv->inconsistent)
|
||||
state |= GTK_STATE_FLAG_INCONSISTENT;
|
||||
|
Loading…
Reference in New Issue
Block a user