You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix issue fitting rectangular geometry dimensions; fix material suggestion popup.
Previously material suggestions seemed to be case-sensisitve, and just not quite right; now is fixed and acts as expected.
When fitting a rectangular geometry dimension in activity/shielding fit, the fit would fail; a logic check erroneously triggered this error; logic check fixed.
popupOptions.listSeparator = '\0'; //(char) When editing a list of values, the separator used for different items.
7471
+
popupOptions.whitespace = ""; //When editing a value, the whitespace characters ignored before the current value.
7472
+
//popupOptions.wordSeparators = "-_., ;()"; //To show suggestions based on matches of the edited value with parts of the suggestion.
7473
+
popupOptions.wordStartRegexp = "\\s|^|\\(|\\<"; // Instead of using .wordSeparators, we will use the regex option to start matching at whitespaces, start of line, open-paren, and boundaries of words (probably a bit duplicative).
7474
+
popupOptions.appendReplacedText = ""; //
7475
+
m_shieldingSuggestion = newWSuggestionPopup( popupOptions, this );
0 commit comments