settings: Don't assert in notify

We can legitimately hit the default case in this switch,
so don't assert that we don't.
This commit is contained in:
Matthias Clasen 2017-10-06 19:30:27 -04:00
parent b9b03cf570
commit b5fe4c0a1d

View File

@ -1403,7 +1403,6 @@ gtk_settings_notify (GObject *object,
settings_update_cursor_theme (settings);
break;
default:
g_assert_not_reached ();
break;
}
}