diff --git a/scripts/globals/globals.gml b/scripts/globals/globals.gml index 39fc0065a..431f82283 100644 --- a/scripts/globals/globals.gml +++ b/scripts/globals/globals.gml @@ -42,8 +42,8 @@ LATEST_VERSION = 1_17_00; VERSION = 1_17_12_0; SAVE_VERSION = 1_17_10_0; - VERSION_STRING = MAC? "1.18.003m" : "1.18"; - BUILD_NUMBER = 1_17_13_0; + VERSION_STRING = MAC? "1.18.003m" : "1.18.0.1"; + BUILD_NUMBER = 1_18_00_0; HOTKEYS = ds_map_create(); HOTKEY_CONTEXT = ds_list_create(); diff --git a/scripts/node_line/node_line.gml b/scripts/node_line/node_line.gml index 1fdfbe286..0a50d9d20 100644 --- a/scripts/node_line/node_line.gml +++ b/scripts/node_line/node_line.gml @@ -153,12 +153,6 @@ function Node_Line(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) cons var _segs = getInputData(28); var _pbbox = getInputData(30); - if(_dtype == 1 && _pat == noone) - _dtype = 0; - - if(_dtype == 2 && (array_invalid(_segs) || array_invalid(_segs[0]))) - _dtype = 0; - inputs[ 6].setVisible(_dtype == 0); inputs[ 7].setVisible(_dtype == 1, _dtype == 1); inputs[28].setVisible(_dtype == 2, _dtype == 2); diff --git a/scripts/panel_inspector/panel_inspector.gml b/scripts/panel_inspector/panel_inspector.gml index ee5afdd5b..a2118809d 100644 --- a/scripts/panel_inspector/panel_inspector.gml +++ b/scripts/panel_inspector/panel_inspector.gml @@ -889,7 +889,7 @@ function Panel_Inspector() : PanelContent() constructor { var lbHov = point_in_rectangle(_m[0], _m[1], lb_x, _selY + ui(2), lb_x + lb_w, _selY + lb_h - ui(4)); if(lbHov) { contentPane.hover_content = true; - draw_sprite_stretched_ext(THEME.button_hide, 1, lb_x, _selY + ui(2), lb_w, lb_h - ui(4), COLORS._main_icon, 1); + draw_sprite_stretched_ext(THEME.s_box_r2_clr, 1, lb_x, _selY + ui(2), lb_w, lb_h - ui(4), c_white, 1); } if(widHov) contentPane.hover_content = true;