Skip to content

Commit 1ff5ef2

Browse files
authored
fix: synchronize unmodifiable vars list with DM (#392)
1 parent dd738ff commit 1ff5ef2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

internal/app/ui/cpvareditor/collect.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ import (
99
)
1010

1111
var unmodifiableVars = []string{
12-
"type", "parent_type", "vars", "x", "y", "z", "filters",
13-
"loc", "maptext", "maptext_width", "maptext_height", "maptext_x", "maptext_y",
14-
"overlays", "underlays", "verbs", "appearance", "vis_locs", "vis_contents",
15-
"vis_flags", "bounds", "particles", "render_source", "render_target",
12+
"type", "parent_type", "vars",
13+
"x", "y", "z",
14+
"loc", "locs", "pixloc",
15+
"maptext", "maptext_width", "maptext_height", "maptext_x", "maptext_y",
16+
"verbs", "appearance", "vis_locs", "vis_contents",
17+
"bounds", "particles", "render_source", "render_target",
1618
}
1719

1820
func collectVariablesNames(vars *dmvars.Variables) (variablesNames []string) {

0 commit comments

Comments
 (0)