Fixed wrong category for keep_pictures setting

This commit is contained in:
Balthasar Reuter
2018-08-02 22:48:06 +02:00
parent 825394acea
commit cecdf5bc04
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
photobooth.cfg
**/*.pyc
**/__pycache__
.eggs
.venv

View File

@@ -50,7 +50,7 @@ class Camera:
self._pic_dims = None
self._is_preview = self._cfg.getBool('Photobooth', 'show_preview')
self._is_keep_pictures = self._cfg.getBool('Picture', 'keep_pictures')
self._is_keep_pictures = self._cfg.getBool('Storage', 'keep_pictures')
def startup(self):