diff --git a/scripts/node_hlsl/node_hlsl.gml b/scripts/node_hlsl/node_hlsl.gml index a83f8b025..61f3da93c 100644 --- a/scripts/node_hlsl/node_hlsl.gml +++ b/scripts/node_hlsl/node_hlsl.gml @@ -225,7 +225,10 @@ void main(in VertexShaderOutput _input, out PixelShaderOutput output) { insp1UpdateTooltip = __txt("Compile"); insp1UpdateIcon = [ THEME.refresh_icon, 1, COLORS._main_value_positive ]; - static onInspector1Update = function() { refreshShader(); } + static onInspector1Update = function() { + refreshShader(); + triggerRender(); + } static step = function() { argument_renderer.showValue = input_display_list[9][1]; } diff --git a/scripts/panel_collection/panel_collection.gml b/scripts/panel_collection/panel_collection.gml index 1c7586b84..aec67240e 100644 --- a/scripts/panel_collection/panel_collection.gml +++ b/scripts/panel_collection/panel_collection.gml @@ -297,7 +297,7 @@ function Panel_Collection() : PanelContent() constructor { } if(_node.path == updated_path && updated_prog > 0) - draw_sprite_stretched_ext(THEME.node_glow_border, 0, _boxx - 9, yy - 9, grid_size + 18, grid_size + 18, COLORS._main_value_positive, updated_prog); + draw_sprite_stretched_ext(THEME.node_bg, 0, _boxx, yy, grid_size, grid_size, COLORS._main_value_positive, updated_prog); if(variable_struct_exists(_node, "getSpr")) _node.getSpr();