summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/class/Tr/ui/TraceTable.js
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2008-06-05 01:20:58 +0200
committerTobi Oetiker <tobi@oetiker.ch>2008-06-05 01:20:58 +0200
commitfd6ba4e8d6e87f1c7c43527ecf9ad4c06893551e (patch)
tree421976e9e0e24c82c9d3b8cfe46c9b342d26e1db /qooxdoo/source/class/Tr/ui/TraceTable.js
parent967063d2a1aa032eecede67b4f1d891bd1964a15 (diff)
downloadsmokeping-fd6ba4e8d6e87f1c7c43527ecf9ad4c06893551e.tar.gz
smokeping-fd6ba4e8d6e87f1c7c43527ecf9ad4c06893551e.tar.xz
more nameing fixes
Diffstat (limited to 'qooxdoo/source/class/Tr/ui/TraceTable.js')
-rw-r--r--qooxdoo/source/class/Tr/ui/TraceTable.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/qooxdoo/source/class/Tr/ui/TraceTable.js b/qooxdoo/source/class/Tr/ui/TraceTable.js
index 0f999a3..ace538f 100644
--- a/qooxdoo/source/class/Tr/ui/TraceTable.js
+++ b/qooxdoo/source/class/Tr/ui/TraceTable.js
@@ -22,7 +22,7 @@ qx.Class.define('Tr.ui.TraceTable',
var tableModel = new qx.ui.table.model.Simple();
this.__tableModel = tableModel;
tableModel.setColumns([ this.tr("Hop"), this.tr("Host"),this.tr("Ip"),
- this.tr("Loss [%]"), this.tr("Sent [ms]"), this.tr("Last [ms]"), //"; help syntax highliter
+ this.tr("Loss [%]"), this.tr("Sent"), this.tr("Last [ms]"), //"; help syntax highliter
this.tr("Avg [ms]"), this.tr("Best [ms]"), this.tr("Worst [ms]"), this.tr("StDev [ms]") ]);
var custom = {
tableColumnModel: function(obj) {
@@ -57,11 +57,11 @@ qx.Class.define('Tr.ui.TraceTable',
var resizeBehavior = tcm.getBehavior();
// This uses the set() method to set all attriutes at once; uses flex
resizeBehavior.set(0, { width:"2*"});
- resizeBehavior.set(1, { width:"8*"});
- resizeBehavior.set(2, { width:"4*"});
+ resizeBehavior.set(1, { width:"9*"});
+ resizeBehavior.set(2, { width:"5*"});
for (var i=3;i<10;i++){
- resizeBehavior.set(i, { width:"2*"});
+ resizeBehavior.set(i, { width:"3*"});
}
qx.event.message.Bus.subscribe('tr.cmd',this.__handle_tr,this);
},