1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 23:00:04 -04:00

RepaintSignal now implements Sync so it can be sent to another thread

Fixes https://github.com/emilk/egui/issues/82
This commit is contained in:
Emil Ernerfeldt
2020-12-27 10:49:26 +01:00
parent af1df8d339
commit 958fc2753a
3 changed files with 14 additions and 5 deletions

View File

@@ -9,6 +9,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased
### Fixed 🐛
* `RepaintSignal` now implements `Sync` so it can be sent to a background thread.
## 0.6.0 - 2020-12-26
### Added ⭐