Rob Eady
Rob Eady
Just fixed the import business, that was a workaround before I removed the dependency of the converters on sublime (by passing in the shell argument from the outside)
Ah, is ST still on python 2? or just an older version of 3? Obviously I don't want Sublime Text to even look at the command line script. Don't know...
There are a few more incorrect HBRUSH casts for COLOR_WINDOW, and I also found this one for tab colors: https://github.com/gabdube/native-windows-gui/blob/057ed70cf85620bb44d816aef68f919eba4660fb/native-windows-gui/src/win32/tabs.rs#L23 Not sure if I missed some others
> Well... not sure if I want to change the default background now that it's been that way for 12 versions. Nice to know why we I need to add...
Wow this blew up :) Yes @victorporof gave a reasonable example use case. Mine was pulling from multiple parts of the state, contingent on a null check. Here's a simplified...
I haven't actually used reselect before - I looked at the documentation, and had some trouble understanding how to apply it to my example. Would it be like this? ```...
Or maybe this works? reselect docs have some room for improvement regarding extra arguments :) ``` // top level const fooAndBarSelector = createSelector( s => s.flag, (s, { fooId })...
> You want to avoid accessing s.foos if the flag is falsy. So, maybe something like this? Oh yes, that makes more sense, thank you
To circle back around, are there any implications of concurrent mode and/or useMutableSource on the notion of introducing a custom equality function parameter? Or, is that a separate discussion, and...
Ok, I think I figured out the problem. It seems like the plugin changes the rotation mode of every bone to euler angles. this meant I could no longer play...