dbr/Ben

Results 133 comments of dbr/Ben

Good point, this would be useful to add - although annoyingly it doesn't seem like the necessary API exists to do this: https://docs.thefoundry.co.uk/nuke/105/pythonreference/nuke.MenuItem-class.html The `MenuItem` has the `setShortcut` method relied...

Requested this API from Foundry - "ID 158638 - setShortcut() should have functionality to set shortcut Context"

The current code is a bit crappy in this respect, because I added the file-moving as an afterthought - it really needs refactored.. It should parse the file, calculate the...

Thanks for the PR - this and some other deps were updated as part of #774 !

Ah, interesting, I haven't really ever used custom toolbars so never really thought about them, but that makes sense The code currently only looks in a fixed set of top...

Contacted Foundry support and they have a workaround for the missing API - can find the toolbars with the following code - I shall try and integrate this sometime soon!...

There's no way to do this currently, but it would be a useful feature. Biggest issue is I'm not too sure exactly how this would work in terms of UI....

That is really weird. So with both that weights json file and changing the size to 300x200, it crashes? It'd be interesting to see if gdb provides a useful backtrace...

The new API looks great! Can't properly test yet as I'm using it in project with imgui-rs 0.7 (via the `13-upgrade-to-imgui-rs-0.7` branch), but roughing in the new API lets rustfmt...

Hm, pylint sensibly accepts something like: ``` if some_cond: a = 2 else: a = 3 print a ``` Perhaps the same logic could be extended to the try/except, since...