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
This is the case in at least the vcpkg release. This code here is the problem:
Element DefaultRenderState(const WindowRenderState& state) {
Element element = state.inner;
if (state.active) {
element |= dim;
}
The current git code is correct, it dims on inactive, not on active. I'll make a patch for the vcpkg port for myself, but I'm reporting this in case you want to release a fixed version as well.
The text was updated successfully, but these errors were encountered:
For what it's worth, I also had to patch in your menu changes (and all of the base component changes due to that), the 5.0.0 menu doesn't pick up mouse clicks inside a window component, the window eats them instead.
With the changes, it's fully functional now though!
This is the case in at least the
vcpkg
release. This code here is the problem:The current git code is correct, it dims on inactive, not on active. I'll make a patch for the
vcpkg
port for myself, but I'm reporting this in case you want to release a fixed version as well.The text was updated successfully, but these errors were encountered: