mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-28 12:21:55 +00:00
Cleanup previous PR
Revert the changes related to set_options debug_keyboard. Remove the Carbon framework flag for glfw.
This commit is contained in:
parent
24c44861ef
commit
4293325539
2 changed files with 2 additions and 2 deletions
|
|
@ -111,7 +111,7 @@ def init_env(
|
|||
|
||||
elif module == 'cocoa':
|
||||
ans.cppflags.append('-DGL_SILENCE_DEPRECATION')
|
||||
for f_ in 'Cocoa Carbon IOKit CoreFoundation CoreVideo'.split():
|
||||
for f_ in 'Cocoa IOKit CoreFoundation CoreVideo'.split():
|
||||
ans.ldpaths.extend(('-framework', f_))
|
||||
|
||||
elif module == 'wayland':
|
||||
|
|
|
|||
|
|
@ -685,7 +685,7 @@ PYWRAP0(get_options) {
|
|||
PYWRAP1(set_options) {
|
||||
PyObject *opts;
|
||||
int is_wayland = 0, debug_rendering = 0, debug_font_fallback = 0;
|
||||
PA("O|pppp", &opts, &is_wayland, &debug_rendering, &debug_font_fallback);
|
||||
PA("O|ppp", &opts, &is_wayland, &debug_rendering, &debug_font_fallback);
|
||||
if (opts == Py_None) {
|
||||
Py_CLEAR(options_object);
|
||||
Py_RETURN_NONE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue