From 150d0ea6954076a2689ee1b6127724ae96495919 Mon Sep 17 00:00:00 2001 From: jojorne Date: Fri, 17 Feb 2023 05:49:07 -0300 Subject: [PATCH] Don't hide genseqs on submit memory. --- static/application.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/application.js b/static/application.js index 34a29066..3e7ee4b5 100644 --- a/static/application.js +++ b/static/application.js @@ -946,7 +946,9 @@ function _dosubmit() { submit_throttle = null; input_text.val(""); hideMessage(); - hidegenseqs(); + if(!memorymode){ + hidegenseqs(); + } socket.send({'cmd': 'submit', 'allowabort': !disallow_abort, 'actionmode': adventure ? action_mode : 0, 'chatname': chatmode ? chat_name.val() : undefined, 'data': txt}); }