diff options
Diffstat (limited to 'js/panels')
-rw-r--r-- | js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js index 11b1d19c..5081a124 100644 --- a/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js +++ b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.js | |||
@@ -62,10 +62,12 @@ exports.StyleSheetsView = Montage.create(Component, { | |||
62 | 62 | ||
63 | if(this.styleSheetList) { | 63 | if(this.styleSheetList) { |
64 | sheetComponent = this.styleSheetList.childComponents[this.styleSheets.indexOf(sheet)]; | 64 | sheetComponent = this.styleSheetList.childComponents[this.styleSheets.indexOf(sheet)]; |
65 | sheetComponent.default = true; | 65 | if(sheetComponent) { |
66 | if(this._defaultStyleSheet) { | 66 | sheetComponent.default = true; |
67 | oldDefaultSheet = this.styleSheetList.childComponents[this.styleSheets.indexOf(this._defaultStyleSheet)]; | 67 | if(this._defaultStyleSheet) { |
68 | oldDefaultSheet.default = false; | 68 | oldDefaultSheet = this.styleSheetList.childComponents[this.styleSheets.indexOf(this._defaultStyleSheet)]; |
69 | oldDefaultSheet.default = false; | ||
70 | } | ||
69 | } | 71 | } |
70 | } | 72 | } |
71 | 73 | ||