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:
parent
ab818ed89f
commit
d8a7114dba
@ -50,6 +50,10 @@ Changelog
|
|||||||
number of characters into a single cell. However, kitty at least preserves
|
number of characters into a single cell. However, kitty at least preserves
|
||||||
the zwj by storing it as a combining character.
|
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]
|
0.11.3 [2018-07-10]
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|||||||
@ -120,7 +120,7 @@ def get_new_os_window_trigger(opts):
|
|||||||
|
|
||||||
def _run_app(opts, args):
|
def _run_app(opts, args):
|
||||||
new_os_window_trigger = get_new_os_window_trigger(opts)
|
new_os_window_trigger = get_new_os_window_trigger(opts)
|
||||||
if is_macos:
|
if False and is_macos:
|
||||||
set_custom_ibeam_cursor()
|
set_custom_ibeam_cursor()
|
||||||
load_all_shaders.cursor_text_color = opts.cursor_text_color
|
load_all_shaders.cursor_text_color = opts.cursor_text_color
|
||||||
with cached_values_for(run_app.cached_values_name) as cached_values:
|
with cached_values_for(run_app.cached_values_name) as cached_values:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user