diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-22 14:35:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-22 14:35:47 +0100 |
| commit | 9db14938dda095b0693148386ee1c2e7cc882481 (patch) | |
| tree | a2a740478ad5858b741a506e2d9eb7e04b0b15a6 /src/lib | |
| parent | 2c0048945cb0b4ec756c8f72152d80233b636aef (diff) | |
Remove duplicate save of SequenceVideo setting.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/playlist.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index 5ccc12b61..e9ea3e3c7 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -122,7 +122,6 @@ Playlist::set_from_xml (shared_ptr<const Film> film, shared_ptr<const cxml::Node } reconnect (); - _sequence_video = node->bool_child ("SequenceVideo"); } /** @param node <Playlist> node */ @@ -132,8 +131,6 @@ Playlist::as_xml (xmlpp::Node* node) for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) { (*i)->as_xml (node->add_child ("Content")); } - - node->add_child("SequenceVideo")->add_child_text(_sequence_video ? "1" : "0"); } void |
