From 67b937a8871842d0254a067ff536936c823ec3b2 Mon Sep 17 00:00:00 2001 From: zvecr Date: Sun, 6 Jul 2025 09:54:11 +0100 Subject: [PATCH] Update info.json parsing --- lib/python/qmk/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py index b4fa481b1bc..f06b2ff0df0 100644 --- a/lib/python/qmk/info.py +++ b/lib/python/qmk/info.py @@ -577,10 +577,10 @@ def _extract_matrix_info(info_data, config_c): if 'matrix_pins' in info_data and 'custom' in info_data['matrix_pins']: _log_warning(info_data, 'Custom Matrix is specified in both info.json and config.h, the config.h values win.') - info_snippet['custom'] = True - if config_c['CUSTOM_MATRIX'] == 'lite': info_snippet['custom_lite'] = True + else: + info_snippet['custom'] = True if info_snippet: info_data['matrix_pins'] = info_snippet