From e632d152a7c811cdb624313c4ba0b6b4bb2a2158 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Fri, 22 Dec 2023 13:49:25 -0500 Subject: [PATCH] tweak comments --- src/gui/options/options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/options/options.js b/src/gui/options/options.js index bef776e9d69..9066b3da51d 100644 --- a/src/gui/options/options.js +++ b/src/gui/options/options.js @@ -1370,7 +1370,7 @@ App.UI.artOptions = function() { }); options.addOption("Restore Faces", "aiRestoreFaces") .addValue("Enabled", true).on().addValue("Disabled", false).off() - .addComment(App.UI.DOM.combineNodes("Use a model to restore the faces after the image has been generated. May result in 'samey' faces. ", rfCheckSpan)); + .addComment(App.UI.DOM.combineNodes("Use a model to restore faces after the image has been generated. May result in 'samey' faces. ", rfCheckSpan)); const adCheckSpan = App.UI.DOM.makeElement('span', `Validating ADetailer setup...`); App.Art.GenAI.client.hasAdetailer().then(result => { @@ -1383,7 +1383,7 @@ App.UI.artOptions = function() { }); options.addOption("ADetailer restore face", "aiAdetailerFace") .addValue("Enabled", true).on().addValue("Disabled", false).off() - .addComment(App.UI.DOM.combineNodes("Use AI to recognize and re-render the face with better detail. Much better than Restore Faces, but requires more technical setup. ", adCheckSpan)); + .addComment(App.UI.DOM.combineNodes("Use AI to recognize and re-render faces with better detail. Much better than Restore Faces, but requires more technical setup. ", adCheckSpan)); options.addOption("Upscaling/highres fix", "aiUpscale") .addValue("Enabled", true).on().addValue("Disabled", false).off() -- GitLab