From 36687fc1f774ba11b9d7644da3afc98181e5bbff Mon Sep 17 00:00:00 2001 From: Elohiem <anon@anon.anon> Date: Tue, 16 Mar 2021 19:03:22 +0100 Subject: [PATCH] Add tooltip --- src/gui/options/options.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/options/options.js b/src/gui/options/options.js index 8dcd085b3a2..2b7d4233282 100644 --- a/src/gui/options/options.js +++ b/src/gui/options/options.js @@ -1072,7 +1072,8 @@ App.UI.artOptions = function() { " and put the 'webgl' folder into the resources/ folder where this html file is. Then refresh the page."); options.addOption("Supersampling (SSAA)", "setSuperSampling") - .addValue("0.25", 0.25).off().addValue("0.5", 0.5).off().addValue("1", 1).off().addValue("2", 2).on().addValue("4", 4).off(); + .addValue("0.25", 0.25).off().addValue("0.5", 0.5).off().addValue("1", 1).off().addValue("2", 2).on().addValue("4", 4).off() + .addComment("This effectively multiplies the resolution of the render before downsampling again. Use a smaller factor for low-end GPU's."); } options.addOption("PA avatar art is", "seeAvatar") -- GitLab