Make WordPress Core

Ticket #42001: 42001.1.patch

File 42001.1.patch, 1.1 KB (added by ashokrd2013, 7 years ago)
  • src/wp-includes/widgets/class-wp-widget-custom-html.php

     
    4747                        'customize_selective_refresh' => true,
    4848                );
    4949                $control_ops = array(
    50                         'width' => 400,
    51                         'height' => 350,
     50                        'width' => 250,
     51                        'height' => 250,
    5252                );
    5353                parent::__construct( 'custom_html', __( 'Custom HTML' ), $widget_ops, $control_ops );
    5454        }
  • src/wp-includes/widgets/class-wp-widget-text.php

     
    3636                        'customize_selective_refresh' => true,
    3737                );
    3838                $control_ops = array(
    39                         'width' => 400,
    40                         'height' => 350,
     39                        'width' => 250,
     40                        'height' => 250,
    4141                );
    4242                parent::__construct( 'text', __( 'Text' ), $widget_ops, $control_ops );
    4343        }