updated output columns order

This commit is contained in:
2026-05-01 00:16:35 +02:00
parent 29c67c4f7f
commit 8c4980d964
2 changed files with 1 additions and 313 deletions
+1 -9
View File
@@ -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));