速度过滤优化

This commit is contained in:
2026-07-17 09:58:27 +08:00
parent 7eab8c9317
commit 82ee2fdf70
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export class Data_Source extends enhance.Base {
alt: number = 0;
update_form_gps: boolean = false;
aircraft_pixel_size: number = 20;
use_system_time: boolean = false;
ignore_msg_time: boolean = false;
constructor() {
super();
+6
View File
@@ -71,6 +71,12 @@ export class Data_Source_Show extends enhance.Base {
this.flush();
}}></Checkbox>
<Checkbox checked={ds.ignore_msg_time} onChange={(e: CheckboxChangeEvent) => {
ds.ignore_msg_time = e.target.checked;
ds.refresh();
this.flush();
}}></Checkbox>
<br/>
<Checkbox checked={ds.show_icao}