Fix incorrect shader recompile on settings change

Fixes #6559
This commit is contained in:
Kovid Goyal 2023-08-25 14:56:43 +05:30
parent da88eaeb23
commit be9dda0aa4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 1 deletions

View File

@ -61,6 +61,9 @@ Detailed list of changes
- Remote control: Allow matching by neighbor of active window. Useful for navigation plugins like vim-kitty-navigator
- Fix a regression that caused changing :opt:`text_fg_override_threshold` or :opt:`text_composition_strategy` via config reload causing incorrect rendering (:iss:`6559`)
0.29.2 [2023-07-27]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -197,7 +197,7 @@ def resolve_graphics_fragment_defines(which: str, f: str) -> str:
graphics.compile(p, allow_recompile)
program_for('bgimage').compile(BGIMAGE_PROGRAM, allow_recompile)
program_for('tint').compile(TINT_PROGRAM)
program_for('tint').compile(TINT_PROGRAM, allow_recompile)
init_cell_program()