reftest: No blinking, please

Blinking cursors aren't helpful when we want to
compare renderings pixel-by-pixel. Turn them off.
This commit is contained in:
Matthias Clasen 2021-11-03 20:43:01 -04:00
parent 97365a8ffe
commit e017e4252b

View File

@ -509,6 +509,13 @@ main (int argc, char **argv)
if (!parse_command_line (&argc, &argv))
return 1;
/* Override some settings that otherwise might affect
* the reliability of our output.
*/
g_object_set (gtk_settings_get_default (),
"gtk-cursor-blink", FALSE,
NULL);
if (arg_base_dir)
basedir = arg_base_dir;
else