Text area with horizontal scoll instead of word wrap

Back into Open Stage Control after a while with some atrophy, but I am moving pretty fast. One small hang up is that I would like to have some text areas with horizontal scroll so that I can do basic editing of the text while keeping my line breaking and not wrapping the text. Is this possible?

Thanks in advance!

Adding this to the widget's css should do:

textarea {
  white-space: pre;
}

or in a theme file to affect all textarea widgets (would also work in any of the textarea's ancestors):

.textarea-container textarea {
  white-space: pre;
}
1 Like

perfect. thanks for the prompt response!