save config on quitting Gajim. see #4174
This commit is contained in:
parent
68c5c9e6bc
commit
6bd991882b
1 changed files with 2 additions and 0 deletions
|
@ -384,6 +384,8 @@ def on_exit():
|
||||||
# delete pid file on normal exit
|
# delete pid file on normal exit
|
||||||
if os.path.exists(pid_filename):
|
if os.path.exists(pid_filename):
|
||||||
os.remove(pid_filename)
|
os.remove(pid_filename)
|
||||||
|
# Save config
|
||||||
|
gajim.interface.save_config()
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
try:
|
try:
|
||||||
import osx
|
import osx
|
||||||
|
|
Loading…
Add table
Reference in a new issue