Fixed Poll: Pie Chart broken (#10830)
This commit is contained in:
parent
22d462166f
commit
106d321dd9
2 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@
|
||||||
- fixed #10814: matrix translations
|
- fixed #10814: matrix translations
|
||||||
- fixed Survey reporting of simple/transported results to csv/tab
|
- fixed Survey reporting of simple/transported results to csv/tab
|
||||||
- fixed #10797: searching non-ascii-characters (e.g. wiki), part 2
|
- fixed #10797: searching non-ascii-characters (e.g. wiki), part 2
|
||||||
|
- fixed #10830: Pie chart broken (Martin Kamerbeek / Oqapi)
|
||||||
|
|
||||||
7.7.18
|
7.7.18
|
||||||
- fixed #10801: Payment Methods: can select a blank method
|
- fixed #10801: Payment Methods: can select a blank method
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,7 @@ sub addSlice {
|
||||||
|
|
||||||
# Work around a bug in imagemagick where an A path with the same start and end point will segfault.
|
# Work around a bug in imagemagick where an A path with the same start and end point will segfault.
|
||||||
if ($percentage == 1) {
|
if ($percentage == 1) {
|
||||||
$percentage = 0.999999999;
|
$percentage = 0.99999;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $label = $properties->{label};
|
my $label = $properties->{label};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue