tcosmas - 2016-01-08

The request above is easily implemented by simply changing the button's coding.

Original coding for Autogenerate HTML button:

    $f2->Button(
        -activebackground => $::activecolor,
        -command          => sub { htmlautoconvert( $textwindow, $top, $htmltitle, $htmlauthor ) },
        -text             => 'Autogenerate HTML',
        -width            => 16
    )->grid( -row => 1, -column => 1, -padx => 5, -pady => 1 );

Modified to move Autogenerate HTML button to top of popup:

    $f1->Button(
        -activebackground => $::activecolor,
        -command          => sub { htmlautoconvert( $textwindow, $top, $htmltitle, $htmlauthor ) },
        -text             => 'Autogenerate HTML',
        -width            => 16
    )->grid( -row => 1, -column => 1, -padx => 5, -pady => 1 );

Just change the $f2 to $f1 and the Autogenerate HTML button will move to the top row and the View in Browser will be the only button on bottom row!