8
0
Piotrek Koszuliński 6 лет назад
Родитель
Сommit
1c5804c555
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-widget/src/widgetresizer/resizer.js

+ 1 - 1
packages/ckeditor5-widget/src/widgetresizer/resizer.js

@@ -355,7 +355,7 @@ class SizeView extends View {
 			x !== null && y !== null );
 
 		this.bind( 'label' ).to( resizerState, 'proposedWidth', resizerState, 'proposedHeight', ( x, y ) =>
-			`${ Math.round( x ) }x${ Math.round( y ) }` );
+			`${ Math.round( x ) }×${ Math.round( y ) }` );
 
 		this.bind( 'activeHandlePosition' ).to( resizerState );
 	}