Skip to content

Commit

Permalink
remove shortcuts for misc tools
Browse files Browse the repository at this point in the history
  • Loading branch information
qcad committed Nov 30, 2021
1 parent 3bc549c commit 62c65de
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ function init(basePath) {
action.setRequiresSelection(true);
action.setScriptFile(basePath + "/InfoAreaCentroid.js");
action.setIcon(basePath + "/InfoAreaCentroid.svg");
action.setDefaultShortcut(new QKeySequence("a,m"));
action.setDefaultCommands(["acentroid", "getac"]); // List as an Array!
var tipShort = qsTranslate("InfoAreaCentroid", "Add 2D area centroid for a selected entity."); // In an init section in the script mostly qsTr() is used
var tipLong = qsTranslate("InfoAreaCentroid", "Add 2D uniform density area centroid marker and values for a selected entity.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ function init(basePath) {
action.setRequiresSelection(true);
action.setScriptFile(basePath + "/InfoSumCentroidsWeighted.js");
action.setIcon(basePath + "/InfoSumCentroidsWeighted.svg");
action.setDefaultShortcut(new QKeySequence("c,m"));
action.setDefaultCommands(["sumcentroid", "sumc"]); // List as an Array!
var tipShort = qsTranslate("InfoSumCentroidsWeighted", "Sum selected 2D centroid markers weighted."); // In an init section in the script mostly qsTr() is used
var tipLong = qsTranslate("InfoSumCentroidsWeighted", "Sum selected 2D centroid markers weighted by their individual custom density.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ function init(basePath) {
action.setRequiresSelection(true);
action.setScriptFile(basePath + "/InfoWireCentroid.js");
action.setIcon(basePath + "/InfoWireCentroid.svg");
action.setDefaultShortcut(new QKeySequence("w,m"));
action.setDefaultCommands(["wcentroid", "getwc"]); // List as an Array!
var tipShort = qsTranslate("InfoWireCentroid", "Add 2D wire centroid for a selection."); // In an init section in the script mostly qsTr() is used
var tipLong = qsTranslate("InfoWireCentroid", "Add 2D uniform density wire centroid marker and values for a selection of entities.");
Expand Down

0 comments on commit 62c65de

Please sign in to comment.