Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c5d355e9
Kaydet (Commit)
c5d355e9
authored
Eki 06, 2016
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: tdf#103026 invalid dash causes CAIRO_STATUS_INVALID_DASH state
Change-Id: I072635ff7c67022ebfd5bdb475e390f3aab7a51c
üst
e713ec44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
cairo_canvashelper.cxx
canvas/source/cairo/cairo_canvashelper.cxx
+4
-1
No files found.
canvas/source/cairo/cairo_canvashelper.cxx
Dosyayı görüntüle @
c5d355e9
...
@@ -1226,7 +1226,10 @@ namespace cairocanvas
...
@@ -1226,7 +1226,10 @@ namespace cairocanvas
break
;
break
;
}
}
if
(
strokeAttributes
.
DashArray
.
getLength
()
>
0
)
//tdf#103026 If the w scaling is 0, then all dashes become zero so
//cairo will set the cairo_t status to CAIRO_STATUS_INVALID_DASH
//and no further drawing will occur
if
(
strokeAttributes
.
DashArray
.
getLength
()
>
0
&&
w
>
0.0
)
{
{
auto
aDashArray
(
comphelper
::
sequenceToContainer
<
std
::
vector
<
double
>>
(
strokeAttributes
.
DashArray
));
auto
aDashArray
(
comphelper
::
sequenceToContainer
<
std
::
vector
<
double
>>
(
strokeAttributes
.
DashArray
));
for
(
auto
&
rDash
:
aDashArray
)
for
(
auto
&
rDash
:
aDashArray
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment