add TODO for supporting undo tree

This commit is contained in:
Josh Holtrop 2017-01-11 22:40:09 -05:00
parent f1815d04d9
commit 2c633a9ddb

View File

@ -411,6 +411,7 @@ void Buffer::redo()
}
else if (m_change_operations[m_current_change_operation_index]->children.size() > 0u)
{
/* TODO: support redoing a child of the undo tree other than the first */
child_index = *m_change_operations[m_current_change_operation_index]->children.begin();
}