Forgot to revert the logic for the extra button/label click to show the sort order on properties

This commit is contained in:
Warren Buckley
2017-09-14 14:16:47 +01:00
parent 2b0ea45da9
commit ac3eaf43cb

View File

@@ -9,7 +9,6 @@
var tabNoSortOrderTranslated = "";
scope.sortingMode = false;
scope.showSortOrdinals = false;
scope.toolbar = [];
scope.sortableOptionsGroup = {};
scope.sortableOptionsProperty = {};
@@ -241,15 +240,6 @@
}
};
//show sort order input boxes for property sort order
scope.toggleSortOrderOverride = function (tool) {
if (scope.showSortOrdinals === true) {
scope.showSortOrdinals = false;
}
else {
scope.showSortOrdinals = true;
}
};
scope.openCompositionsDialog = function() {