Skip to content

Commit

Permalink
Save all cue properties in the session file
Browse files Browse the repository at this point in the history
This will enable changes to default properties without impacting existing sessions
  • Loading branch information
FrancescoCeruti committed Sep 22, 2023
1 parent 2d1e86e commit 3c0ec1d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lisp/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,7 @@ def __save_to_file(self, session_file):
# Get session cues
session_cues = []
for cue in self.layout.cues():
session_cues.append(
cue.properties(defaults=False, filter=filter_live_properties)
)
session_cues.append(cue.properties(filter=filter_live_properties))

session_dict = {
"meta": {
Expand Down

0 comments on commit 3c0ec1d

Please sign in to comment.