Disable swipe left when reply is still being generated.

This commit is contained in:
Cohee 2023-08-25 19:23:05 +03:00
parent 91d13efcef
commit 794abfcd6f
1 changed files with 2 additions and 2 deletions

View File

@ -2256,8 +2256,8 @@ async function Generate(type, { automatic_trigger, force_name2, resolve, reject,
return;
}
// Hide swipes on either multigen or real streaming
if ((isStreamingEnabled() || isMultigenEnabled()) && !dryRun) {
// Hide swipes if not in a dry run.
if (!dryRun) {
hideSwipeButtons();
}