Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- Be respectful, on topic and if you see a problem, Flag it.
If you would like to contact our Community Manager personally, feel free to send a private message or an email.
Options
Any way to increase the size of dimension entry?

Is there a way to increase the size of the 'Value' field or show it as multi-line? I'm building expressions in Notepad++ and pasting them in, but if OnShape decides there is an error, scrolling back and forth repeatedly to find an error in a field that's limited to 20 characters is extra tedious.

0
Comments
Even a simple expression with a couple of variable requires scrolling back and forth! Even just allowing us to temporarily resize the whole input dialogue (so we could make it the width of our screen) would go a long way!
There's an improvement request for it: https://forum.onshape.com/discussion/comment/48300#Comment_48300
The Onsherpa | Reach peak Onshape productivity
www.theonsherpa.com
Right click page or hit F12 to inspect. Paste the following in the console and hit enter.
let width = 30; // % browser width
let style = document.createElement('style');
document.head.appendChild(style);
style.innerHTML = `.dimension-edit-container .ns-feature-parameter .bti-numeric-text, .dimension-edit-container os-quantity-parameter input {width: ${width}vw!important;} .dimension-edit {max-width: ${width}vw!important;}`;
Change '30' above to desired width as a percent of the browser's. This will stay active until you refresh the page.
Also, the UI windows can be dragged to widen now, which wasn't the case in 2023.
The Onsherpa | Reach peak Onshape productivity
www.theonsherpa.com