color-device: Always become ready no matter if we succeeded or not

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2627>
This commit is contained in:
Sebastian Wick 2022-09-16 15:43:46 +02:00 committed by Marge Bot
parent 1023592f8a
commit ed554615f8

View File

@ -342,7 +342,7 @@ static void
meta_color_device_notify_ready (MetaColorDevice *color_device,
gboolean success)
{
color_device->is_ready = success;
color_device->is_ready = TRUE;
g_signal_emit (color_device, signals[READY], 0, success);
}