Launcher: Fix on File Drop Error Message (#5026)

This commit is contained in:
qwint
2025-05-22 10:37:23 -05:00
committed by GitHub
parent 9c0ad2b825
commit 62694b1ce7

View File

@@ -392,7 +392,7 @@ def run_gui(path: str, args: Any) -> None:
if file and component:
run_component(component, file)
else:
logging.warning(f"unable to identify component for {file}")
logging.warning(f"unable to identify component for {filename}")
def _on_keyboard(self, window: Window, key: int, scancode: int, codepoint: str, modifier: list[str]):
# Activate search as soon as we start typing, no matter if we are focused on the search box or not.