Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 4496)
+++ /CKEditor/trunk/CHANGES.html	(revision 4497)
@@ -64,4 +64,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/4597">#4597</a> : Fixed custom style with same attribute name but different attribute value doesn't work.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4651">#4651</a> : Fixed 'Deleted' and 'Inserted' text style is not rendering in wysiwyg mode and is wrong is source mode.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/4654">#4654</a> : Fixed 'CKEDITOR.config.font_defaultLabel(fontSize_defaultLabel)' is not working.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/richcombo/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/richcombo/plugin.js	(revision 4496)
+++ /CKEditor/trunk/_source/plugins/richcombo/plugin.js	(revision 4497)
@@ -278,5 +278,5 @@
 		},
 
-		setValue : function( value, text )
+		setValue : function( value, emptyLabel )
 		{
 			this._.value = value;
@@ -286,10 +286,11 @@
 			if ( !value )
 			{
-				text = this.label;
+				value = emptyLabel || this.label;
 				textElement.addClass( 'cke_inline_label' );
 			}
 			else
 				textElement.removeClass( 'cke_inline_label' );
-			textElement.setHtml( typeof text != 'undefined' ? text : value );
+
+			textElement.setHtml( value );
 		},
 
