-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control time kept #663
base: master
Are you sure you want to change the base?
Control time kept #663
Conversation
nengo_gui/static/sim_control.js
Outdated
|
||
/** update the time axis display */ | ||
this.axis_g | ||
.call(this.axis); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit silly to have on two lines.
be7ec75
to
0991df0
Compare
@tcstewar this feature is ready for review now that it's been brought up to date with master |
The kept_time value doesn't seem to persist. If I change the kept_time parameter and then reload the page, it goes back to the old 4s value. However, the config menu still has the changed value..... |
sim.time_slider.update_kept_time(val); | ||
} | ||
}); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this in Nego.NetGraph? It isn't used by any of the NetGraph components...
Allows the time kept on the time slider to be configurable and saved to the config. Addresses #643