Since the UI callbacks are in the UI thread, we need to lock the back end data structures. Add locking to all the QML callbacks in formgps_ui.cpp. ``` lock.lockForWrite(); ``` and ``` lock.unlock(); ```
Since the UI callbacks are in the UI thread, we need to lock the back end data structures. Add locking to all the QML callbacks in formgps_ui.cpp.
and