We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3534d6a commit 03475ffCopy full SHA for 03475ff
InteractiveHtmlBom/ibom.css
@@ -229,6 +229,7 @@ canvas:active {
229
width: 30px;
230
position: relative;
231
user-select: none;
232
+ -moz-user-select: none;
233
}
234
235
.bom .bom-checkbox:before {
InteractiveHtmlBom/ibom.js
@@ -679,6 +679,9 @@ function setBomCheckboxes(value) {
679
document.onkeydown = function(e) {
680
switch (e.key) {
681
case "n":
682
+ if (document.activeElement.type == "text") {
683
+ return;
684
+ }
685
if (currentHighlightedRowId !== null) {
686
checkBomCheckbox(currentHighlightedRowId, "placed");
687
highlightNextRow();
0 commit comments