Skip to content

Commit

Permalink
Bugfix: fatal error on many models. Releasing 0.5.5a. slic3r#92 slic3…
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed Dec 5, 2011
1 parent 72499d2 commit b8a5d5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Slic3r.pm
Expand Up @@ -3,7 +3,7 @@ package Slic3r;
use strict;
use warnings;

our $VERSION = "0.5.5";
our $VERSION = "0.5.5a";

our $debug = 0;
sub debugf {
Expand Down
2 changes: 1 addition & 1 deletion lib/Slic3r/ExtrusionLoop.pm
Expand Up @@ -6,7 +6,7 @@ use XXX;
extends 'Slic3r::Polyline::Closed';

# perimeter/fill/solid-fill/bridge/skirt
has 'role' => (is => 'ro', required => 1);
has 'role' => (is => 'rw', required => 1);

sub split_at {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Slic3r/ExtrusionPath.pm
Expand Up @@ -11,7 +11,7 @@ has 'depth_layers' => (is => 'ro', default => sub {1});
has 'flow_ratio' => (is => 'rw');

# perimeter/fill/solid-fill/bridge/skirt
has 'role' => (is => 'ro', required => 1);
has 'role' => (is => 'rw', required => 1);

use Slic3r::Geometry qw(PI X Y epsilon deg2rad rotate_points);
use XXX;
Expand Down

0 comments on commit b8a5d5a

Please sign in to comment.