omochimetaru
omochimetaru
This PR solves dangling focus issue. # about dangling focus issue Screen has `mFocusPath`. It is not updated when a child widget is removed. So dangling pointer will be made...
I found 2 issues about `nanogui::ref` design. - 1. const handling - 2. implicit conversion problem # const handling ## current design There are 7 methods for pointer operator overloads....
In my windows environment, `Screen::mousePos` has small error of value. The reason is this line. https://github.com/wjakob/nanogui/blob/c79c737da564ec15bd86964d28574eeb7e6dc7aa/src/screen.cpp#L481 What is the purpose of this line? If its a just mistake, please delete...
With Xcode9.3, If I change `Show` checkbox on scheme management window, Xcode make a little diff on xccheme files. I use this library by gitsubmodule + carthage and add xcodeproj...
# My environment macOS High Sierra 10.13.4 Xcode9.3 # Problem I just cloned master and got compile error below. ``` /Users/omochi/github/omochi/RandomKit/Sources/RandomKit/Extensions/Swift/Collection+RandomKit.swift:100:17: Invalid redeclaration of 'uncheckedRandom(in:using:)' /Users/omochi/github/omochi/RandomKit/Sources/RandomKit/Extensions/Swift/Collection+RandomKit.swift:75:17: 'uncheckedRandom(in:using:)' previously declared here...
This patch fixes a bug #94 which I reported. This is second try to fix it. First one is #95, but it had some issues. This patch apply minimum threshold...
This patch fixes a bug #94 which I reported. If `eventLoop.scheduleRepeatedTask` completes before scheduled time, it reschedules. So it guaranteed for user that scheduled job doesn't start before scheduled time...
### Describe the bug I used ScheduledJob which is scheduled at every minutes. In some environment, job runs twice quickly at every minutes. I patched this library to investigate by...
I want vapor to support time zone. Details are in below. # Problem ## Database level debuggability Currently vapor supports to reading and writing `Date` value for database. But it...
When `Shard` reconnect. We need to reset ZLib context. I think we need to some work for `GatewayHandler` design. Example implementaiton: 246f2dd