summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk/config_schema.py
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-17 14:53:18 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-17 14:53:18 -0400
commitad0ba0fc61f83e2aaf22192e7d0ad05dde9ffd62 (patch)
treec21ec14e1c5783691f101fd43cfb2cc7424f1e33 /py_modules/lsfg_vk/config_schema.py
parent57bd1cd9fcbbc8d4cd1d2f45106fc29d00bb6918 (diff)
downloaddecky-lsfg-vk-ad0ba0fc61f83e2aaf22192e7d0ad05dde9ffd62.tar.gz
decky-lsfg-vk-ad0ba0fc61f83e2aaf22192e7d0ad05dde9ffd62.zip
fix descriptions and cleanup UI
Diffstat (limited to 'py_modules/lsfg_vk/config_schema.py')
-rw-r--r--py_modules/lsfg_vk/config_schema.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/py_modules/lsfg_vk/config_schema.py b/py_modules/lsfg_vk/config_schema.py
index 8c5f58c..1604f5d 100644
--- a/py_modules/lsfg_vk/config_schema.py
+++ b/py_modules/lsfg_vk/config_schema.py
@@ -63,21 +63,21 @@ CONFIG_SCHEMA: Dict[str, ConfigField] = {
name="flow_scale",
field_type=ConfigFieldType.FLOAT,
default=0.8,
- description="change the flow scale (lower = faster)"
+ description="change the flow scale"
),
"performance_mode": ConfigField(
name="performance_mode",
field_type=ConfigFieldType.BOOLEAN,
default=True,
- description="toggle performance mode (2x-8x performance increase)"
+ description="toggle performance mode"
),
"hdr_mode": ConfigField(
name="hdr_mode",
field_type=ConfigFieldType.BOOLEAN,
default=False,
- description="enable hdr mode (doesn't support scrgb)"
+ description="enable hdr mode"
)
}
@@ -93,7 +93,7 @@ class ConfigurationData(TypedDict):
class ConfigurationManager:
- """Centralized configuration management for TOML-based config"""
+ """Centralized configuration management"""
@staticmethod
def get_defaults() -> ConfigurationData: