Kai O'Reilly
Kai O'Reilly
@bobhy Thank you for filing this issue. I can see why that incorrect behavior is happening, and I can working on fixing this when I have the time. In the...
Thank you for reporting this. I am somewhat busy right now, but I will still be able to fix this soon (ideally within a few days, but definitely within a...
It appears that the cause of the race condition is the theoretical possibility that you could get one of those signals as the app is starting up, at which point...
I fixed the underlying issue in #1309, so this should work now without any race conditions or hanging. You actually do not need to (and cannot) do `AsyncLock` here, since...
Thank you for reporting this. I will look into this and see what I can do.
This would certainly be good to support. The main question is whether this should be a specific feature for a chooser, or whether it should be general for all widgets;...
I think the best solution for this is something like this: ```go type MyStruct struct { SomeField string } func (m *MyStruct) CoreFieldValue(field string) core.Value { if field == "SomeField"...
Okay, I will add a `CoreFieldValuer` interface. One question is whether we should get rid of some already existing struct tags and have people just write code for them instead....
@theclapp It is certainly theoretically possible (and easy) to do that; the main question is whether the negatives of having two very different ways to do the same thing outweigh...
We implemented this in #1605 as `FieldWidget`. There is an issue with yaegi that prevents us from documenting this on the website for now, but here are the docs that...