move last used adjuster settings to _2 to avoid conflict with expanded palette options

This commit is contained in:
Fabian Dill
2020-11-02 03:35:03 +01:00
parent d95a16a09e
commit c230263200
3 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ def main():
logging.basicConfig(format='%(message)s', level=loglevel)
args, path = adjust(args=args)
from Utils import persistent_store
persistent_store("adjuster", "last_settings", args)
persistent_store("adjuster", "last_settings_2", args)
if __name__ == '__main__':
main()