We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec25730 commit f933950Copy full SHA for f933950
editor/js/Sidebar.Project.Video.js
@@ -46,15 +46,15 @@ function SidebarProjectVideo( editor ) {
46
47
// Render
48
49
- container.add( new UIText( '' ).setWidth( '90px' ) );
50
-
51
const progress = new UIProgress( 0 );
52
progress.setDisplay( 'none' );
53
progress.setWidth( '170px' );
+ progress.setMarginLeft( '90px' );
54
container.add( progress );
55
56
const renderButton = new UIButton( strings.getKey( 'sidebar/project/render' ) );
57
renderButton.setWidth( '170px' );
+ renderButton.setMarginLeft( '90px' );
58
renderButton.onClick( async () => {
59
60
renderButton.setDisplay( 'none' );
0 commit comments