lower default update interval to 10ms

This commit is contained in:
Axel Kohlmeyer
2024-07-15 10:28:22 -04:00
parent 1d6959efe6
commit 1fe1aa0683
3 changed files with 6 additions and 5 deletions

View File

@ -1088,7 +1088,7 @@ void LammpsGui::do_run(bool use_buffer)
logupdater = new QTimer(this);
connect(logupdater, &QTimer::timeout, this, &LammpsGui::logupdate);
logupdater->start(settings.value("updfreq", "100").toInt());
logupdater->start(settings.value("updfreq", "10").toInt());
}
void LammpsGui::render_image()