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
Widgets seem to not be "flex"ing properly, as well as labels being too small and cutting off text on the bottom.
For some reason the calculator example starts four windows that all seem to share the same data.
Button actions only happen after the mouse moves off of the button that was just clicked.
Version / OS
azul version: bb5ab4c (I just cloned master from this repo)
Operating system: Windows 10 Pro
Windowing system (X11 or Wayland, Linux only): N/A
Steps to Reproduce
clone the repo and run cargo run --release --example calculator
Additional Information
The hello_world example has the same layout and button issues, but only opens a single window. I first ran into this following the guide/tutorial and tried a handful of versions of the hello_world example I found here, on the website, etc.
The text was updated successfully, but these errors were encountered:
The layout is "broken" because of the new layout solver. I tried introducing display:inline, but it didn't work out. The screenshots were made using the old layout solver (written October 2018),
The four windows are intentional, it's in order to show that multi-window drawing works. The layout() function is called once for each window (and since there is no conditional logic for displaying different UIs, it always returns the same UI). However, for some reason, WR does not update the texture caches properly, which leads to redrawing bugs with multiple windows.
I am aware that the master branch is broken. For the 0.1 release, I will probably have to use the old layout solver. However, there are changes such as %-based width / height or box-sizing:border-box which are present in the new, but not the old solver.
Description
Version / OS
azul version: bb5ab4c (I just cloned master from this repo)
Operating system: Windows 10 Pro
Windowing system (X11 or Wayland, Linux only): N/A
Steps to Reproduce
clone the repo and run
cargo run --release --example calculator
Additional Information
The hello_world example has the same layout and button issues, but only opens a single window. I first ran into this following the guide/tutorial and tried a handful of versions of the hello_world example I found here, on the website, etc.
The text was updated successfully, but these errors were encountered: