Index: /issm/trunk/src/m/classes/public/plot/applyoptions.m
===================================================================
--- /issm/trunk/src/m/classes/public/plot/applyoptions.m	(revision 2673)
+++ /issm/trunk/src/m/classes/public/plot/applyoptions.m	(revision 2674)
@@ -45,4 +45,15 @@
 else
 	view(getfieldvalue(options,'view',2));
+end
+
+%axis
+if exist(options,'axis')
+	eval(['axis ' getfieldvalue(options,'axis')]);
+else
+	if (strcmpi(md.type,'2d') | exist(options,'layer')),
+		axis tight equal;
+	else
+		axis auto tight
+	end
 end
 
@@ -188,15 +199,4 @@
 end
 
-%axis
-if exist(options,'axis')
-	eval(['axis ' getfieldvalue(options,'axis')]);
-else
-	if (strcmpi(md.type,'2d') | exist(options,'layer')),
-		axis tight equal;
-	else
-		axis auto tight
-	end
-end
-
 %streamliness
 if exist(options,'streamlines'),
