Skip to content

Commit

Permalink
fixed a bug
Browse files Browse the repository at this point in the history
UI items in the ISF editor are no longer displayed in the reverse order
  • Loading branch information
mrRay committed May 21, 2019
1 parent e15c37f commit ff11909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Qt/ISFEditor/ISFEditor_app/ISFController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ void ISFController::populateLoadingWindowUI() {

// run through the scene's inputs- we want to make a UI item for each...
vector<ISFAttrRef> sceneInputs = scene->inputs();
for (auto it=sceneInputs.rbegin(); it!=sceneInputs.rend(); ++it) {
for (auto it=sceneInputs.begin(); it!=sceneInputs.end(); ++it) {
ISFAttrRef attrib = *it;
if (attrib == nullptr)
continue;
Expand Down

0 comments on commit ff11909

Please sign in to comment.