:save-session --only-active-window implies --with-private for private windows

This commit is contained in:
cryzed 2017-08-14 00:30:45 +02:00 committed by Florian Bruhin
parent 9d65039b35
commit 259d08ba29
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ class SessionManager(QObject):
try:
if only_active_window:
name = self.save(name, only_window=win_id,
with_private=with_private)
with_private=True)
else:
name = self.save(name, with_private=with_private)
except SessionError as e: