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
using Bonito, Bonito.Observables
import Bonito.TailwindDashboard as D
using WGLMakie
WGLMakie.activate!(resize_to=:parent)
App() do
fig =lines([1,2], [4,5])
returnRow(fig)
end
works fine for return fig, but return Row(fig) has the behaviour that it grows correctly when growing the browser window, but does not shrink when shrinking. On Julia 1.10, Windows/Edge, latest Bonito version.
Eg.
then grow window and shrink yields:
The text was updated successfully, but these errors were encountered:
Relatedly, while return fig works great on a small window, Row(fig) shows a figure that is slightly too large.
Also of note that while playing with the above code, my computer's display went completely black 3 times, and I had to Ctrl-Alt-Delete to quit my user session. I guess this is Edge's fault / vulnerability, but still feels worth reporting...
works fine for
return fig
, butreturn Row(fig)
has the behaviour that it grows correctly when growing the browser window, but does not shrink when shrinking. On Julia 1.10, Windows/Edge, latest Bonito version.Eg.
then grow window and shrink yields:
The text was updated successfully, but these errors were encountered: