Help for this page

Select Code to Download


  1. or download this
     #get the recipe list in the main windows
    my $recipe_clist = show_recipe_list();
    ...
    
    ## show everything in the main windows ##
    show_all $window_main;
    
  2. or download this
    sub refresh_main_window {
            $recipe_clist->hide();
            $recipe_clist = show_recipe_list() || die "Problem on exchange
    +: $!";
            $recipe_clist->show_now() || die "Problem on show: $!";
    }