Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -25,10 +25,10 @@ function [height, grid_controls] = draw_onto( object, parent_handle, grid, grid_ ...@@ -25,10 +25,10 @@ function [height, grid_controls] = draw_onto( object, parent_handle, grid, grid_
grid_controls{i} = struct(); grid_controls{i} = struct();
grid_controls{i}.subgrid = {}; 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]) new_height = max([new_height 1]);
height = height + new_height height = height + new_height;
%Standardize this %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) ]); 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) ]);
......
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