About this:
get_keyfile_ints(config, config_home, "styling", "caret_period",
10000, 0, &common_style_set.styling[GCS_CARET].italic, NULL);
...
if (common_style_set.styling[GCS_CARET].italic < 10000)
SSM(sci, SCI_SETCARETPERIOD, common_style_set.styling[GCS_CARET].italic, 0);
As I said, nobody will want to see the caret on for 10s and off for 10s so the default value 10000 is safe to use and if such value is set, SCI_SETCARETPERIOD
won't be applied and you get the default caret period from your system.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.