From 97750cf21e43a056325acce86ff09286d9b8a2b8 Mon Sep 17 00:00:00 2001 From: SoggySemen Date: Thu, 19 Mar 2026 22:39:51 -0700 Subject: [PATCH] Clipping Save/Load Text Fix --- www/js/plugins/Nore_RecollectionSave.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www/js/plugins/Nore_RecollectionSave.js b/www/js/plugins/Nore_RecollectionSave.js index 598d7b6..273f3d0 100644 --- a/www/js/plugins/Nore_RecollectionSave.js +++ b/www/js/plugins/Nore_RecollectionSave.js @@ -333,6 +333,13 @@ var Nore; } _Scene_Save_prototype_onSavefileOk.call(this); }; +Scene_File.prototype.createHelpWindow = function () { + this._helpWindow = new Window_Help(1); + this._helpWindow.height = this._helpWindow.height + 10; + this._helpWindow.createContents(); // regenerate contents to match new height + this._helpWindow.setText(this.helpWindowText()); + this.addWindow(this._helpWindow); +}; Scene_File.prototype.createListWindow = function () { var x = 0; var y = this._helpWindow.height;