asedev

Results 4 comments of asedev

What have you already tried to solve this issue? Please attach an example code to reproduce this behavior.

For those case "user A wants this and user B want this" one usually implements a plugin-specific setting. Then everybody may be able to decide about their preferred behavior. Only...

Sounds like this issue: https://iplug2.discourse.group/t/vs-2019-update-16-11-10-aug-2021-breaks-build-with-igraphics-skia

Since C++14 one is able to use this feature: ``` [[deprecated("Replaced by SetEnabled, due to ...")]] void SetDisabled(bool v) { SetEnabled(!v); } void SetEnabled(bool v) { enabled = v; ......