Skip to content
Snippets Groups Projects
Commit e53b055a authored by srosse's avatar srosse
Browse files

OO-763: fix inherit in tools

parent a580884a
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,9 @@ public class TooledStackedPanel extends BreadcrumbedStackedPanel implements Stac
public List<Tool> getTools() {
List<Tool> currentTools = new ArrayList<>();
for(int i=0; i<stack.size(); i++) {
int lastStep = stack.size() - 1;
for(int i=0; i<lastStep; i++) {
Object uo = stack.get(i).getUserObject();
if(uo instanceof TooledBreadCrumb) {
TooledBreadCrumb crumb = (TooledBreadCrumb)uo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment