From 3595485c45fe7d8e928e36d8e102f575e4d0b453 Mon Sep 17 00:00:00 2001 From: Matt Tenenbaum Date: Sat, 1 Nov 2025 15:13:45 -0400 Subject: [PATCH] Fix ref to handed .eep files --- macos/QMK Toolbox/MainViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/QMK Toolbox/MainViewController.swift b/macos/QMK Toolbox/MainViewController.swift index 4e8298b022..91768ef6e0 100644 --- a/macos/QMK Toolbox/MainViewController.swift +++ b/macos/QMK Toolbox/MainViewController.swift @@ -216,7 +216,7 @@ class MainViewController: NSViewController, USBListenerDelegate { for b in findBootloaders() { if b.eepromFlashable { - b.flashEEPROM(mcu, file: left ? "left.eep" : "right.eep") + b.flashEEPROM(mcu, file: left ? "reset_left.eep" : "reset_right.eep") } }