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
fe0b0c06
Kaydet (Commit)
fe0b0c06
authored
Haz 17, 2014
tarafından
matteocam
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fill Color in VclProcessor2D is set out of decorated text if-block
Change-Id: Ice01290d7baa46f694b2bf5801b6af48f083d521
üst
e68c18f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
11 deletions
+8
-11
vclprocessor2d.cxx
drawinglayer/source/processor2d/vclprocessor2d.cxx
+8
-11
No files found.
drawinglayer/source/processor2d/vclprocessor2d.cxx
Dosyayı görüntüle @
fe0b0c06
...
...
@@ -146,6 +146,14 @@ namespace drawinglayer
fRotate
,
rTextCandidate
.
getLocale
()));
// set FillColor Attribute
const
Color
aFillColor
(
rTextCandidate
.
getTextFillColor
()
);
if
(
aFillColor
!=
COL_TRANSPARENT
)
{
aFont
.
SetFillColor
(
aFillColor
);
aFont
.
SetTransparent
(
false
);
}
// Don't draw fonts without height
if
(
aFont
.
GetHeight
()
<=
0
)
return
;
...
...
@@ -187,17 +195,6 @@ namespace drawinglayer
if
(
eFontStrikeout
!=
STRIKEOUT_NONE
)
aFont
.
SetStrikeout
(
eFontStrikeout
);
// set FillColor Attribute
// FIXME(matteocam)
// XXX: is "Color" the right type? i.e. can we use class Color in TextSimplePortionPrimitive2D
const
Color
aFillColor
(
pTCPP
->
getTextFillColor
()
);
if
(
aFillColor
!=
COL_TRANSPARENT
)
{
aFont
.
SetFillColor
(
aFillColor
);
aFont
.
SetTransparent
(
false
);
}
// set EmphasisMark attribute
FontEmphasisMark
eFontEmphasisMark
=
EMPHASISMARK_NONE
;
...
...
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