diff --git a/docs/changelog.rst b/docs/changelog.rst index 27f2ccd3a..3ad510ebd 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -50,6 +50,10 @@ Changelog number of characters into a single cell. However, kitty at least preserves the zwj by storing it as a combining character. +- macOS: Disable the custom mouse cursor. Using a custom cursor fails on dual + GPU machines. I give up, Apple users will just have to live with the + limitations of their choice of OS. (:iss:`794`) + 0.11.3 [2018-07-10] ------------------------------ diff --git a/kitty/main.py b/kitty/main.py index 84464339a..9897b3aa2 100644 --- a/kitty/main.py +++ b/kitty/main.py @@ -120,7 +120,7 @@ def get_new_os_window_trigger(opts): def _run_app(opts, args): new_os_window_trigger = get_new_os_window_trigger(opts) - if is_macos: + if False and is_macos: set_custom_ibeam_cursor() load_all_shaders.cursor_text_color = opts.cursor_text_color with cached_values_for(run_app.cached_values_name) as cached_values: