From c72152a4d5bf506c59de2d91f9197d0e00862323 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 17 Nov 2025 22:48:37 -0500 Subject: [PATCH] Update .gitignore to allow custom ui_*.py files in src/ui/ The previous pattern was too broad and excluded ui_elements.py and ui_utils.py. Now only Qt auto-generated UI files are ignored, while our custom files are tracked. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 10de9ad..2b51005 100644 --- a/.gitignore +++ b/.gitignore @@ -142,7 +142,9 @@ dmypy.json *.qm *.qrc.cpp moc_*.cpp +# Qt auto-generated UI files (but not our custom ui_elements.py, ui_utils.py, etc.) ui_*.py +!src/ui/ui_*.py qrc_*.py # StormIRC specific