Jesse Grosjean

Results 30 comments of Jesse Grosjean

As an update to this, it seems like this fork of LXReorderableCollectionViewFlowLayout fixes a similar issue: https://github.com/selasie/LXReorderableCollectionViewFlowLayout/commit/a9dd083bd16367bc99d2eb7471a50472c0a112d2 Maybe same approach could also solve this problem?

Thanks for your quick feedback. I'll try to think about it a little more and let you know if I come up with anything.

Sorry about that close/reopen... clicked the wrong button. Anyway, I've found something that works for my particular case. Here's what I'm doing: ``` // this is in my collection view...

I understand not wanting "index" in the API, I'm just not sure how to do what I want without it. > The "correct" solution here would be to have mutable...

Quite possibly there's a simple way using existing API, but I couldn't figure it out. In the meantime I've created this pull request that adds the API that I really...

Sorry for not responding sooner. I just tried a few quick fixes and failed to fix. I'd be happy to take a pull request, but don't have time to devote...

I agree there's some oddness in attribute names, let me see if I can explain. First there's three places to think about attribute names: `Item.setAttribute` names, `@tag` names encoded in...

You can work around this problem by: 1. Generate your proto rust files in a common directory. 2. Adding a `mod.rs` file to that directory. 3. In that `mod.rs` file...

@bbqsrc @BusyJay I'm having a similar problem, did this ever get resolved? Here's some server code to reproduce. It sends an iterator that never ends to `sink.send_all`. ```rust fn test_stream(...

I've been doing more testing, this time writing the client in `grpc-rs`. When I use that client, and close the connection on the client end... then things work as expected....