mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-24 04:42:51 -04:00
If async mode is used, the data graph automatically sets "Show single gate steps" option; closes #641
This commit is contained in:
parent
8a7bdc7b40
commit
e8a4a0fcc8
@ -85,7 +85,11 @@ public class DataShape implements Shape {
|
||||
}
|
||||
}.order(signals);
|
||||
|
||||
ValueTableObserver valueTableObserver = new ValueTableObserver(microStep, signals, maxSize);
|
||||
boolean ms = microStep;
|
||||
if (model.getAsyncInfos() != null)
|
||||
ms = true;
|
||||
|
||||
ValueTableObserver valueTableObserver = new ValueTableObserver(ms, signals, maxSize);
|
||||
logDataModel = valueTableObserver.getLogData();
|
||||
model.addObserver(valueTableObserver);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user