Skip to content

Commit 1c191bd

Browse files
committed
Merge remote-tracking branch 'origin/main' into Highlight
2 parents 798e389 + cfcdfc5 commit 1c191bd

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/changelog.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Check Changelog
2+
on:
3+
pull_request:
4+
types: [ assigned, opened, synchronize, reopened, labeled, unlabeled ]
5+
branches:
6+
- main
7+
jobs:
8+
Check-Changelog:
9+
name: Check Changelog Action
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- uses: tarides/changelog-check-action@v2
13+
with:
14+
changelog: CHANGELOG.md

src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,7 @@ fn main() {
199199

200200
let repaint_signal = _cc.egui_ctx.clone();
201201
thread::spawn(move || loop {
202-
if let Ok(_) = sync_rx.recv() {
203-
println!("requested repaint!");
202+
if sync_rx.recv().is_ok() {
204203
repaint_signal.request_repaint();
205204
}
206205
});

0 commit comments

Comments
 (0)