Skip to content

Commit

Permalink
Merge pull request #70 from aleruggeri87/master
Browse files Browse the repository at this point in the history
change strings to char array for old matlab compatibility
  • Loading branch information
bastibe authored Jul 3, 2024
2 parents f9609cf + 5788498 commit d922d23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Violin.m
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@
end
obj.ViolinAlpha = ViolinAlpha;

set(obj.ViolinPlot, "Marker", "none", "LineStyle","-");
set(obj.ViolinPlot2, "Marker", "none", "LineStyle","-");
set(obj.ViolinPlot, 'Marker', 'none', 'LineStyle', '-');
set(obj.ViolinPlot2, 'Marker', 'none', 'LineStyle', '-');
end

%% SET METHODS
Expand Down

0 comments on commit d922d23

Please sign in to comment.