mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-26 19:01:27 +00:00
Forgot that cocoa blink interval time is in ms
This commit is contained in:
parent
72ccf87d19
commit
cff79bc9d4
1 changed files with 1 additions and 1 deletions
|
|
@ -546,7 +546,7 @@ create_os_window(PyObject UNUSED *self, PyObject *args) {
|
|||
OPT(cursor_blink_interval) = 0.5;
|
||||
#ifdef __APPLE__
|
||||
double cbi = cocoa_cursor_blink_interval();
|
||||
if (cbi >= 0) OPT(cursor_blink_interval) = cbi / 2.0;
|
||||
if (cbi >= 0) OPT(cursor_blink_interval) = cbi / 2000.0;
|
||||
#endif
|
||||
}
|
||||
is_first_window = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue