Randall O'Reilly
Randall O'Reilly
in grunti, Output tab has textview -- that cursor showing up even when in other tabs
issue arises for dynamic resizing multi-iterations -- BBox2D called 2x, doing needless resizes on rebuilds. Need to cache the new size and then resize after size is official -- likely...
cd /Users/oreilly/ccngit/bg/sims/bgate (from: {FileDirPath}) panic: runtime error: slice bounds out of range [3:1] goroutine 50 [running]: github.com/goki/gi/gi.(*TextField).InsertAtCursor(0xc00021aa00, 0x62b55c1, 0x1) /Users/oreilly/go/src/github.com/goki/gi/gi/textfield.go:622 +0x489 github.com/goki/gi/gi.(*TextField).KeyInput(0xc00021aa00, 0xc014c06690) /Users/oreilly/go/src/github.com/goki/gi/gi/textfield.go:1226 +0x1ca github.com/goki/gi/gi.(*TextField).KeyChordEvent.func1(0x5512f40, 0xc00021aa00, 0x5513fc0, 0xc000deb000, 0x7,...
Problem: if you update a Slice, Map, etc while a SliceView, MapView, TableView etc is also updating its representation of it, then you'll get crashes. This also applies to emergent...
used in emergent in various places.
requires platform-specific glue to create and set from image + mask + hotspot, and requires more robust asset provisioning strategy (same as icons -- currently not really addressed -- will...
Qt requires you to wrap all use of string literals in some magic cookie, in Go it would be something like: `tr.Tr("Ok")` ? But might be simpler to just have...
e.g., a repeats, but d does not! to use key events, need a map from keycode to rune. pita.
Need to be able to just render a given svg file or svg object (icon) to a bitmap and use that bitmap, e.g., for icons in textview. This is a...