Index: /issm/trunk/src/m/classes/public/plot/plot_BC.m
===================================================================
--- /issm/trunk/src/m/classes/public/plot/plot_BC.m	(revision 4681)
+++ /issm/trunk/src/m/classes/public/plot/plot_BC.m	(revision 4682)
@@ -1,13 +1,17 @@
 function plot_BC(md,options,width,i,data);
 
+%plot neuman
 plot_pressureload(md,options,width,i,data)
 
 hold on
 
+%plot dirichlets
 h1=plot(md.x(find(md.spcvelocity(:,1))),md.y(find(md.spcvelocity(:,1))),'ro','MarkerSize',14,'MarkerFaceColor','r');
 h2=plot(md.x(find(md.spcvelocity(:,2))),md.y(find(md.spcvelocity(:,2))),'bo','MarkerSize',10,'MarkerFaceColor','b');
 h3=plot(md.x(find(md.spcvelocity(:,3))),md.y(find(md.spcvelocity(:,3))),'yo','MarkerSize',6 ,'MarkerFaceColor','y');
 
+%update legend
 [legend_h,object_h,plot_h,text_strings]=legend();
+legend('off');
 text_strings{end+1}='vx boundary';
 text_strings{end+1}='vy dirichlet';
@@ -15,5 +19,6 @@
 plot_h(end+1)=h1;
 plot_h(end+1)=h2;
-if h3, plot_h=[plot_h h3];end
+if h3, plot_h(end+1)=h3; end
+legend(plot_h,text_strings,'location','NorthEast')
 
-legend(plot_h,text_strings)
+hold off
Index: /issm/trunk/src/m/classes/public/plot/plotdoc.m
===================================================================
--- /issm/trunk/src/m/classes/public/plot/plotdoc.m	(revision 4681)
+++ /issm/trunk/src/m/classes/public/plot/plotdoc.m	(revision 4682)
@@ -15,4 +15,5 @@
 disp('                  - ''basal_dragx'' or ''basal_dragy'' : plot a component of the basal drag on the bed (in kPa)');
 disp('                  - ''boundaries'': this will draw all the segment boundaries to the model, including rifts.');
+disp('                  - ''BC'': this will draw all the boundary conditions (Dirichlet and Neumann).');
 disp('                  - ''deviatoricstress_tensor'': plot the components of the deviatoric stress tensor (tauxx,tauyy,tauzz,tauxy,tauxz,tauyz) if computed');
 disp('                  - ''deviatoricstress_principal'': plot the deviatoricstress tensor principal axis and principal values');
