mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-11 18:32:12 +02:00
Forgot that cocoa blink interval time is in ms
This commit is contained in:
@@ -546,7 +546,7 @@ create_os_window(PyObject UNUSED *self, PyObject *args) {
|
|||||||
OPT(cursor_blink_interval) = 0.5;
|
OPT(cursor_blink_interval) = 0.5;
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
double cbi = cocoa_cursor_blink_interval();
|
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
|
#endif
|
||||||
}
|
}
|
||||||
is_first_window = false;
|
is_first_window = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user