About this:
```C
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 or view it on GitHub:
https://github.com/geany/geany/pull/3901#issuecomment-2159910678
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany/pull/3901/[email protected]>

Reply via email to