refactor(sdm): Global pass with refined 'External Only' SDM tags. Pruned redundant internal references and fixed indentation logic in injector. Verified full project compilation.

This commit is contained in:
2026-05-09 14:32:44 -04:00
parent 696c08692e
commit 8c06c1767b
142 changed files with 2352 additions and 990 deletions
+4 -2
View File
@@ -62,7 +62,10 @@ NERV_PALETTE = {
}
def apply_nerv() -> None:
"""Apply NERV theme with hard edges and specific palette."""
"""
Apply NERV theme with hard edges and specific palette.
[C: tests/test_theme_nerv.py:test_apply_nerv_sets_rounding_and_colors]
"""
style = imgui.get_style()
for col_enum, rgba in NERV_PALETTE.items():
style.set_color_(col_enum, imgui.ImVec4(*rgba))
@@ -82,4 +85,3 @@ def apply_nerv() -> None:
style.popup_border_size = 1.0
style.child_border_size = 1.0
style.tab_border_size = 1.0