updated output columns order
This commit is contained in:
@@ -37,7 +37,6 @@ BlockRefExportAll.prototype.dmxAttributes = [
|
||||
"name",
|
||||
"power",
|
||||
"weigth",
|
||||
"position",
|
||||
"type",
|
||||
"gel",
|
||||
"iris",
|
||||
@@ -65,7 +64,7 @@ BlockRefExportAll.prototype.beginEvent = function () {
|
||||
|
||||
var ts = new QTextStream(file);
|
||||
setUtf8Codec(ts);
|
||||
ts.writeString("Block Name\tX\tY\tPosition\tType\tDmx\tName\tId\tGel\tIris\tBarndoor\tMode\tHeigth\tWeigth\tPower");
|
||||
ts.writeString("Block Name\tPos X\tPos Y\tDmx\tId\tName\tPower\tWeigth\tType\tGel\tIris\tBarndoor\tMode\tHeigth");
|
||||
|
||||
var doc = this.getDocument();
|
||||
|
||||
@@ -149,13 +148,6 @@ BlockRefExportAll.prototype.beginEvent = function () {
|
||||
else {
|
||||
ts.writeString("\t");
|
||||
}
|
||||
// position
|
||||
if (dmxReferences[ref].position !== undefined) {
|
||||
ts.writeString("\t%1".arg(dmxReferences[ref].position));
|
||||
}
|
||||
else {
|
||||
ts.writeString("\t");
|
||||
}
|
||||
// type
|
||||
if (dmxReferences[ref].type !== undefined) {
|
||||
ts.writeString("\t%1".arg(dmxReferences[ref].type));
|
||||
|
||||
Reference in New Issue
Block a user