mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
batch-rename-dialog: Replace GtkStateType with GtkStateFlags
The former has been deprecated since 3.14.
This commit is contained in:
parent
dbeeec0534
commit
33ff2defe4
1 changed files with 2 additions and 2 deletions
|
@ -1555,11 +1555,11 @@ update_row_shadowing (GtkWidget *row,
|
|||
|
||||
if (shown)
|
||||
{
|
||||
flags |= GTK_STATE_PRELIGHT;
|
||||
flags |= GTK_STATE_FLAG_PRELIGHT;
|
||||
}
|
||||
else
|
||||
{
|
||||
flags &= ~GTK_STATE_PRELIGHT;
|
||||
flags &= ~GTK_STATE_FLAG_PRELIGHT;
|
||||
}
|
||||
|
||||
gtk_style_context_set_state (context, flags);
|
||||
|
|
Loading…
Reference in a new issue