Index: /issm/trunk-jpl/src/m/plot/applyoptions.py
===================================================================
--- /issm/trunk-jpl/src/m/plot/applyoptions.py	(revision 19434)
+++ /issm/trunk-jpl/src/m/plot/applyoptions.py	(revision 19435)
@@ -272,10 +272,10 @@
 		textx=options.getfieldvalue('textx')
 		texty=options.getfieldvalue('texty')
-		textsize=options.getfieldvalue('textsize')
 		textcolor=options.getfieldvalue('textcolor')
 		textweight=options.getfieldvalue('textweight')
 		textrotation=options.getfieldvalue('textrotation')
-		for label,x,y,size,color,weight,rotation in zip(text,textx,texty,textsize,textcolor,textweight,textrotation):
-			ax.text(x,y,label,transform=ax.transAxes,fontsize=size,color=color,weight=weight,rotation=rotation)
+                textfontsize=options.getfieldvalue('textfontsize')
+		for label,x,y,size,color,weight,rotation in zip(text,textx,texty,textfontsize,textcolor,textweight,textrotation):
+			ax.text(x,y,label,transform=ax.transAxes,fontsize=textfontsize,color=color,weight=weight,rotation=rotation)
 	#}}}
 
Index: /issm/trunk-jpl/src/m/plot/checkplotoptions.py
===================================================================
--- /issm/trunk-jpl/src/m/plot/checkplotoptions.py	(revision 19434)
+++ /issm/trunk-jpl/src/m/plot/checkplotoptions.py	(revision 19435)
@@ -71,8 +71,8 @@
 
 		# font size
-		if options.exist('textsize'):
-			textsize=options.getfieldvalue('textsize',12)
+		if options.exist('textfontsize'):
+			textfontsize=options.getfieldvalue('textfontsize',12)
 			sizelist=[]
-			sizelist.extend(textsize if isinstance(textsize,list) else [textsize])
+			sizelist.extend(textsize if isinstance(textfontsize,list) else [textfontsize])
 		else:
 			sizelist=[12]
@@ -113,5 +113,5 @@
 		options.addfield('textx',textx)
 		options.addfield('texty',texty)
-		options.changefieldvalue('textsize',sizelist)
+		options.changefieldvalue('textfontsize',sizelist)
 		options.changefieldvalue('textcolor',colorlist)
 		options.changefieldvalue('textweight',weightlist)
