SciViews / svDialogs

Standard Dialog Boxes for R
https://www.sciviews.org/svDialogs/
Other
8 stars 1 forks source link

Line break (\n) stop working after updating R to 4.2.2, Rstudio to 2022.12.0 #12

Open YangTSY opened 1 year ago

YangTSY commented 1 year ago

Hi everyone,

I have a simple issue when using dlg_input(), all of my line breaks (\n) stop working. Please see the examples below:

library(svDialogs)

dlg_input(message = c("first line \n", "second line \n\n", "third line \\n \\n"))

dlgInput(message = c("first line \n", "second line \n\n", "third line \\n \\n"))

Both codes yield the same result as below: issue