diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2009-05-28 07:58:29 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2009-05-28 07:58:29 +0000 |
| commit | 0017dab8fd4f5a02b16affcbb78aebc36bbf8e8f (patch) | |
| tree | 24137002d4cec374f705189ce76623ea1412f565 | |
| parent | 175c87c60ce87c5e783fdc19a9a35b57a1d85a11 (diff) | |
| download | xxv-0017dab8fd4f5a02b16affcbb78aebc36bbf8e8f.tar.gz xxv-0017dab8fd4f5a02b16affcbb78aebc36bbf8e8f.tar.bz2 | |
* jason: fix delete recording
| -rw-r--r-- | skins/jason/recordings.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/skins/jason/recordings.js b/skins/jason/recordings.js index 62e420b..50719f2 100644 --- a/skins/jason/recordings.js +++ b/skins/jason/recordings.js @@ -794,10 +794,10 @@ Ext.extend(Ext.xxv.recordingsDataView, Ext.DataView, { } if(store.title) { this.ownerCt.SetPanelTitle(store.title); + store.title = undefined; } else { this.ownerCt.SetPanelTitle(this.szTitle); } - } ,doSelectKeyword : function(tag) { if(tag) { @@ -816,8 +816,6 @@ Ext.extend(Ext.xxv.recordingsDataView, Ext.DataView, { if(record) { if(record.data.isrecording == 0) { delete(this.store.baseParams['data']); - this.store.title = undefined; - this.store.baseParams.cmd = 'rl';
if(record.id == 'up') { var f = this.filter.field.getValue(); @@ -1113,7 +1111,7 @@ Ext.extend(Ext.xxv.recordingsDataView, Ext.DataView, { selRecord = this.store.getAt(iSel); } if(!selRecord || selRecord.data.isrecording == 0) { - for(iSel++;iSel < store.getCount();iSel++) { + for(iSel++;iSel < this.store.getCount();iSel++) { selRecord = this.store.getAt(iSel); if(selRecord.data.isrecording != 0) break; |
