chaselal

Results 4 comments of chaselal

@JoshuaWise > You can't send database objects across IPC channels, but you _can_ send a filename (string), which you can then use to open the same database within your renderer...

I tried updating `react-native.config.js` as described in the `react-native >= 0.60` instructions at https://github.com/andpor/react-native-sqlite-storage#how-to-use-android, but that did not work. Then, I tried following the instructions for `react-native

I work with fschwiet. I tested and successfully reproduced the problem in our app on an iOS 10.3 simulator. I have not been able to produce a similar crash on...

@pkoscierzynski You need to add an NSTrackingArea to the PlotView with NSView.AddTrackingArea. Something like: ``` var options = NSTrackingAreaOptions.ActiveAlways | NSTrackingAreaOptions.MouseEnteredAndExited | NSTrackingAreaOptions.InVisibleRect | NSTrackingAreaOptions.MouseMoved; plotView.AddTrackingArea(new NSTrackingArea(plotView.Bounds, options, plotView, null);...