From f7c1fa257c5f3daea0b2df7c7f9eebf8d3411367 Mon Sep 17 00:00:00 2001 From: Urban Wallasch Date: Fri, 21 May 2021 18:01:28 +0200 Subject: [PATCH] * Apply preferences when saving, as one would expect. --- ffpreview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffpreview.py b/ffpreview.py index fe13444..6effa62 100755 --- a/ffpreview.py +++ b/ffpreview.py @@ -842,6 +842,7 @@ class cfgDialog(QDialog): if not fn: return eprint(1, 'saving config to:', self.cfg['conffile']) + self.apply() try: with open(fn) as file: lines = [line.rstrip() for line in file] @@ -876,7 +877,6 @@ class cfgDialog(QDialog): mbox.exec_() if self.cfg['verbosity'] > 2: eprint(3, cont) - self.apply() def apply(self): for i in range(len(self.opt)): -- 2.30.2