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
7b708d30
Kaydet (Commit)
7b708d30
authored
Ock 15, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Always disable anti-aliasing when drawing table borders.
Change-Id: Idede8220ac36c5bd4a88ceda33a99333f7b9fe90
üst
c95871a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
vclpixelprocessor2d.cxx
drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
+13
-0
No files found.
drawinglayer/source/processor2d/vclpixelprocessor2d.cxx
Dosyayı görüntüle @
7b708d30
...
...
@@ -843,6 +843,19 @@ namespace drawinglayer
RenderSvgRadialAtomPrimitive2D
(
static_cast
<
const
primitive2d
::
SvgRadialAtomPrimitive2D
&
>
(
rCandidate
));
break
;
}
case
PRIMITIVE2D_ID_BORDERLINEPRIMITIVE2D
:
{
// process recursively, but turn off anti-aliasing. Border
// lines are always rectangular, and look horrible when
// the anti-aliasing is enabled.
sal_uInt16
nAntiAliasing
=
mpOutputDevice
->
GetAntialiasing
();
mpOutputDevice
->
SetAntialiasing
(
nAntiAliasing
&
~
ANTIALIASING_ENABLE_B2DDRAW
);
process
(
rCandidate
.
get2DDecomposition
(
getViewInformation2D
()));
mpOutputDevice
->
SetAntialiasing
(
nAntiAliasing
);
break
;
}
default
:
{
// process recursively
...
...
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