Move variable

This commit is contained in:
Jonas Kvinge 2021-03-21 04:49:22 +01:00
parent 78588d8cdf
commit e90b5e63e5
1 changed files with 1 additions and 1 deletions

View File

@ -191,10 +191,10 @@ void AnalyzerContainer::Load() {
}
// Framerate
QList<QAction*> actions = group_framerate_->actions();
for (int i = 0; i < framerate_list_.count(); ++i) {
if (current_framerate_ == framerate_list_[i]) {
ChangeFramerate(current_framerate_);
QList<QAction*> actions = group_framerate_->actions();
actions[i]->setChecked(true);
break;
}