File tree Expand file tree Collapse file tree 8 files changed +698
-334
lines changed Expand file tree Collapse file tree 8 files changed +698
-334
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ ApplicationWindow {
221
221
}
222
222
height: parent .height
223
223
width: 300
224
- TableViewColumn{ role: " value" ; title: " Temp " ; width: 200 }
224
+ TableViewColumn{ role: " value" ; title: " Local VM stack " ; width: stackTableView . width - 2 }
225
225
model: stackModel
226
226
}
227
227
@@ -233,7 +233,7 @@ ApplicationWindow {
233
233
height: parent .height
234
234
width: parent .width - stackTableView .width
235
235
TableViewColumn{ id: mnumColmn ; role: " num" ; title: " #" ; width: 50 }
236
- TableViewColumn{ role: " value" ; title: " Memory" ; width: 750 }
236
+ TableViewColumn{ role: " value" ; title: " Memory" ; width: 650 }
237
237
model: memModel
238
238
}
239
239
}
@@ -248,8 +248,8 @@ ApplicationWindow {
248
248
}
249
249
height: parent .height
250
250
width: parent .width
251
- TableViewColumn{ id: key ; role: " key" ; title: " #" ; width: storageTableView .width / 2 }
252
- TableViewColumn{ role: " value" ; title: " Storage" ; width: storageTableView .width / 2 }
251
+ TableViewColumn{ id: key ; role: " key" ; title: " #" ; width: storageTableView .width / 2 - 1 }
252
+ TableViewColumn{ role: " value" ; title: " Storage" ; width: storageTableView .width / 2 - 1 }
253
253
model: storageModel
254
254
}
255
255
}
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ Filter.prototype.changed = function(callback) {
31
31
this . callbacks . push ( callback ) ;
32
32
33
33
var self = this ;
34
- message . connect ( function ( messages , id ) {
34
+ messages . connect ( function ( messages , id ) {
35
35
if ( id == self . id ) {
36
- for ( var i = 0 ; i < self . callbacks . length ; i ++ ) {
37
- self . callbacks [ i ] . call ( self , messages ) ;
38
- }
36
+ for ( var i = 0 ; i < self . callbacks . length ; i ++ ) {
37
+ self . callbacks [ i ] . call ( self , messages ) ;
38
+ }
39
39
}
40
40
} ) ;
41
41
} ;
You can’t perform that action at this time.
0 commit comments