diff --git a/datafiles/data/Nodes/Internal.zip b/datafiles/data/Nodes/Internal.zip index 6b09708d5..aac8515c8 100644 Binary files a/datafiles/data/Nodes/Internal.zip and b/datafiles/data/Nodes/Internal.zip differ diff --git a/datafiles/data/Theme.zip b/datafiles/data/Theme.zip index 4fa35475e..0c8b0be9b 100644 Binary files a/datafiles/data/Theme.zip and b/datafiles/data/Theme.zip differ diff --git a/objects/o_dialog_splash/Draw_64.gml b/objects/o_dialog_splash/Draw_64.gml index 8f2ba8652..337690100 100644 --- a/objects/o_dialog_splash/Draw_64.gml +++ b/objects/o_dialog_splash/Draw_64.gml @@ -39,7 +39,7 @@ if !ready exit; var y0 = dialog_y + ui(128); var y1 = dialog_y + dialog_h - ui(16); - draw_set_text(f_p0, fa_left, fa_bottom, COLORS._main_text_sub); + draw_set_text(f_p2, fa_left, fa_bottom, COLORS._main_text_sub); draw_text(x0, y0 - ui(4), __txt("Recent files")); sp_recent.setFocusHover(sFOCUS, sHOVER); @@ -51,7 +51,7 @@ if !ready exit; var bx = x1 - ui(28); var by = y0 - ui(28 + 4); var txt = __txtx("splash_clear_recent", "Clear recent files"); - if(buttonInstant(THEME.button_hide_fill, bx, by, ui(28), ui(28), mouse_ui, sHOVER, sFOCUS, txt, THEME.icon_delete,, COLORS._main_value_negative) == 2) { + if(buttonInstant(THEME.button_hide_fill, bx, by, ui(28), ui(28), mouse_ui, sHOVER, sFOCUS, txt, THEME.icon_delete, 0, COLORS._main_value_negative) == 2) { ds_list_clear(RECENT_FILES); RECENT_SAVE(); } @@ -62,9 +62,9 @@ if !ready exit; // recent_thumbnail = !recent_thumbnail; // } - bx -= ui(28 + 4); + bx -= ui(28 + 1); txt = __txtx("splash_open_autosave", "Open autosave folder"); - if(buttonInstant(THEME.button_hide_fill, bx, by, ui(28), ui(28), mouse_ui, sHOVER, sFOCUS, txt, THEME.save_auto, 0) == 2) { + if(buttonInstant(THEME.button_hide_fill, bx, by, ui(28), ui(28), mouse_ui, sHOVER, sFOCUS, txt, THEME.save_auto, 0, COLORS._main_icon, 1, .75) == 2) { shellOpenExplorer(DIRECTORY + "autosave"); } diff --git a/scripts/node_shape/node_shape.gml b/scripts/node_shape/node_shape.gml index a7685d6bf..f6866a8de 100644 --- a/scripts/node_shape/node_shape.gml +++ b/scripts/node_shape/node_shape.gml @@ -578,6 +578,9 @@ function Node_Shape(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) con static postDeserialize = function() { if(CLONING) return; + if(array_length(load_map.inputs) <= 15) + load_map.inputs[15] = { raw_value : { d : 0 } }; + if(LOADING_VERSION < 1_18_01_0) { if(array_length(load_map.inputs) >= 23) { var _dat = load_map.inputs[23].raw_value;