We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff1981b commit a8acdcfCopy full SHA for a8acdcf
1 file changed
src/yourcontrols/src/definitions.rs
@@ -1283,8 +1283,6 @@ impl Definitions {
1283
}
1284
1285
1286
- self.event_queue.pop_front();
1287
-
1288
Ok(())
1289
1290
@@ -1489,14 +1487,18 @@ impl Definitions {
1489
1487
1490
1488
1491
pub fn get_all_current(&self) -> AllNeedSync {
+ let mut avars = self
+ .avarstransfer
1492
+ .get_all_vars()
1493
+ .clone()
1494
+ .into_iter()
1495
+ .filter(|(x, _)| !self.do_not_sync.contains(x))
1496
+ .collect();
1497
+
1498
+ self.physics_corrector.remove_components(&mut avars);
1499
1500
AllNeedSync {
- avars: self
- .avarstransfer
- .get_all_vars()
- .clone()
- .into_iter()
- .filter(|(x, _)| !self.do_not_sync.contains(x))
- .collect(),
1501
+ avars,
1502
lvars: self
1503
.lvarstransfer
1504
.get_all_vars()
0 commit comments