From 7019a7994b9caf37f31756013487c2551c158df0 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 20 Feb 2012 21:51:08 +0000 Subject: [PATCH] show clones, fixes #567 --- source/Ox.UI/js/Video/Ox.VideoEditor.js | 2 +- source/Ox.UI/js/Video/Ox.VideoPanel.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/js/Video/Ox.VideoEditor.js b/source/Ox.UI/js/Video/Ox.VideoEditor.js index 35006e89..eae0ff3e 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditor.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditor.js @@ -607,7 +607,7 @@ Ox.VideoEditor = function(options, self) { range: self.options.annotationsRange, selected: self.options.selected, showCalendar: self.options.showAnnotationsCalendar, - showLayers: self.options.showLayers, + showLayers: Ox.clone(self.options.showLayers), showMap: self.options.showAnnotationsMap, showUsers: self.options.showUsers, sort: self.options.annotationsSort, diff --git a/source/Ox.UI/js/Video/Ox.VideoPanel.js b/source/Ox.UI/js/Video/Ox.VideoPanel.js index 9916787b..37c9ef71 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPanel.js +++ b/source/Ox.UI/js/Video/Ox.VideoPanel.js @@ -204,7 +204,7 @@ Ox.VideoPanel = function(options, self) { selected: self.options.selected, showCalendar: self.options.showAnnotationsCalendar, showFonts: true, - showLayers: self.options.showLayers, + showLayers: Ox.clone(self.options.showLayers), showMap: self.options.showAnnotationsMap, showUsers: self.options.showUsers, sort: self.options.annotationsSort,