Commit d14a620b authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Multe some unnecessary output.

Kill output thats not needed.


git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/branches/TableTool_refactor@8684 57e6efec-57d4-0310-aeb1-a6c144bb1a8b
parent 24d56bce
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -25,10 +25,10 @@ function [height, grid_controls] = draw_onto( object, parent_handle, grid, grid_
            grid_controls{i} = struct();
            grid_controls{i}.subgrid = {};
            
            [new_height, grid_controls{i}.subgrid] = draw_onto( object, parent_handle, grid{i}.grid, grid_controls{i}.subgrid, depth+1, height, x, y)
            [new_height, grid_controls{i}.subgrid] = draw_onto( object, parent_handle, grid{i}.grid, grid_controls{i}.subgrid, depth+1, height, x, y);
            
            new_height = max([new_height 1])
            height = height + new_height
            new_height = max([new_height 1]);
            height = height + new_height;
            
            %Standardize this
            uicontrol(parent_handle, 'Style', 'edit', 'Position', [depth*125, y-((height+start_height)*80+(height+start_height-1)*5), 120, new_height*80+(new_height-1)*5], 'String', ['' num2str(depth) ', ' num2str(i) ]);