settings: use correct LOD values for extended adjustable dpi

This commit is contained in:
Peter F. Patel-Schneider 2025-03-25 08:15:49 -04:00
parent 7b28423572
commit 3fcc75f892
1 changed files with 3 additions and 3 deletions

View File

@ -1012,9 +1012,9 @@ class ExtendedAdjustableDpi(settings.Setting):
rw_options = {"read_fnid": 0x50, "write_fnid": 0x60}
keys_universe = common.NamedInts(X=0, Y=1, LOD=2)
choices_universe = common.NamedInts.range(100, 4000, str, 50)
choices_universe[0] = "LOW"
choices_universe[1] = "MEDIUM"
choices_universe[2] = "HIGH"
choices_universe[1] = "LOW"
choices_universe[2] = "MEDIUM"
choices_universe[3] = "HIGH"
keys = common.NamedInts(X=0, Y=1, LOD=2)
def write_key_value(self, key, value, save=True):