diff --git a/koboldai_settings.py b/koboldai_settings.py index 6d8049cc..24d1a41a 100644 --- a/koboldai_settings.py +++ b/koboldai_settings.py @@ -1167,11 +1167,9 @@ class user_settings(settings): self.cluster_requested_models = [] # The models which we allow to generate during cluster mode self.wigen_use_own_wi = False self.wigen_amount = 80 - self.screenshot_show_attribution = True self.screenshot_show_story_title = True self.screenshot_show_author_name = True self.screenshot_author_name = "Anonymous" - self.screenshot_show_model_name = True self.screenshot_use_boring_colors = False diff --git a/static/koboldai.js b/static/koboldai.js index 0742c70f..af8b8909 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -6972,16 +6972,6 @@ sync_hooks.push({ } }); -sync_hooks.push({ - class: "user", - name: "screenshot_show_attribution", - func: function(show) { - robotAttribution.classList.toggle("hidden", !show); - $el("#screenshot-options-attribution").classList.toggle("disabled", !show); - if (show) robotAttribution.scrollIntoView(); - } -}); - sync_hooks.push({ class: "user", name: "screenshot_show_story_title", @@ -7001,15 +6991,6 @@ sync_hooks.push({ } }); -sync_hooks.push({ - class: "user", - name: "screenshot_show_model_name", - func: function(show) { - $el("#model-name-vis").classList.toggle("hidden", !show); - robotAttribution.scrollIntoView(); - } -}); - sync_hooks.push({ class: "user", name: "screenshot_use_boring_colors", diff --git a/templates/popups.html b/templates/popups.html index b8c9e636..9cd35a47 100644 --- a/templates/popups.html +++ b/templates/popups.html @@ -366,11 +366,7 @@ FIXME: screenshot-setting is a lazy hack until var_sync can converted to an attribute for scanning and such --> Options -