From b3b3e97223d2c885bd0e27c6b3ab5f26beee9be4 Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Thu, 3 Dec 2020 18:13:00 +0100 Subject: [PATCH] use addComment instead of empty option where possible --- src/gui/options/optionsPassage.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/options/optionsPassage.js b/src/gui/options/optionsPassage.js index 7c215b4159d..02f2dbfbe20 100644 --- a/src/gui/options/optionsPassage.js +++ b/src/gui/options/optionsPassage.js @@ -1025,7 +1025,7 @@ App.UI.artOptions = function() { .addValueList([["Revamped embedded vector art", 3], ["Non-embedded vector art", 2], ["NoX/Deepmurk's vector art", 1], ["Shokushu's rendered imagepack", 0]]); if (V.imageChoice === 1) { - options.addOption("").addComment('<span class="warning">Git compiled only, no exceptions.</span>'); + options.addComment('<span class="warning">Git compiled only, no exceptions.</span>'); options.addOption("Face artwork is", "seeFaces") .addValue("Enabled", 1).on().addValue("Disabled", 0).off(); @@ -1039,7 +1039,7 @@ App.UI.artOptions = function() { options.addOption("Clothing erection bulges are", "showClothingErection") .addValue("Enabled", true).on().addValue("Disabled", false).off(); } else if (V.imageChoice === 0) { - options.addOption("").addComment(`You need """to""" + options.addComment(`You need """to""" <a href="https://mega.nz/#!upoAlBaZ!EbZ5wCixxZxBhMN_ireJTXt0SIPOywO2JW9XzTIPhe0">download the image pack</a> """and""" put the 'renders' folder into the resources/ folder where this html file is.` ); @@ -1047,7 +1047,7 @@ App.UI.artOptions = function() { options.addOption("Slave summary fetish images are", "seeMainFetishes") .addValue("Enabled", 1).on().addValue("Disabled", 0).off(); } else if (V.imageChoice === 3) { - options.addOption("").addComment('<span class="warning">Git compiled only, no exceptions.</span>'); + options.addComment('<span class="warning">Git compiled only, no exceptions.</span>'); options.addOption("Clothing erection bulges are", "showClothingErection") .addValue("Enabled", true).on().addValue("Disabled", false).off(); -- GitLab