Skip to content

Commit

Permalink
replace Dialog vbox call with get_content_area
Browse files Browse the repository at this point in the history
Updates #770
  • Loading branch information
shawnlaffan committed Oct 31, 2020
1 parent b415e14 commit 5cfe472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Biodiverse/GUI/GUIManager.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2797,8 +2797,8 @@ sub report_error {
#$details_box->pack_start($check_button, 0, 0, 0);
$details_box->pack_start( $extra_text_widget, 0, 0, 0 );

$dlg->vbox->pack_start( $text_widget, 0, 0, 0 );
$dlg->vbox->pack_start( $details_box, 0, 0, 0 );
$dlg->get_content_area->pack_start( $text_widget, 0, 0, 0 );
$dlg->get_content_area->pack_start( $details_box, 0, 0, 0 );

$dlg->show_all;
my $details_visible = 0;
Expand Down

0 comments on commit 5cfe472

Please sign in to comment.