Skip to content

Commit

Permalink
FIXED: stencil loading
Browse files Browse the repository at this point in the history
  • Loading branch information
nkh committed Nov 19, 2023
1 parent 6980587 commit 812480e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/App/Asciio/stripes/editable_box2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,12 @@ sub get_connection_points
{
my ($self) = @_ ;

$self->{CONNECTORS}->@*,
if(exists $self->{CONNECTORS} && defined $self->{CONNECTORS})
{
return $self->{CONNECTORS}->@* ;
}

return ;
}

#-----------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions script/asciio
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ my ($character_width, $character_height) = $asciio->get_character_size() ;
if(defined $asciio_config->{TARGETS}[0])
{
$asciio->run_actions_by_name(['Open', $asciio_config->{TARGETS}[0]]) ;
delete $asciio->{BINDINGS_COMPLETION} ;

$window->set_default_size(@{$asciio->{WINDOW_SIZE}}) if defined $asciio->{WINDOW_SIZE} ;
}

Expand Down
Binary file added setup/Stencils/stenciil_computer.asciio
Binary file not shown.

0 comments on commit 812480e

Please sign in to comment.