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.
See #794
This commit is contained in:
Kovid Goyal 2018-08-06 12:22:01 +05:30
parent ab818ed89f
commit d8a7114dba
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 1 deletions

View File

@ -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]
------------------------------

View File

@ -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: