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
f48b387d
Kaydet (Commit)
f48b387d
authored
Eyl 06, 2013
tarafından
László Németh
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#69041 LibreLogo: fix SVG/SMIL timing with filled polylines
Change-Id: Icebd47d57a830986c371a62ec7dab81ca8fd930a
üst
a7403bf7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
LibreLogo.py
librelogo/source/LibreLogo/LibreLogo.py
+4
-3
No files found.
librelogo/source/LibreLogo/LibreLogo.py
Dosyayı görüntüle @
f48b387d
...
...
@@ -787,7 +787,7 @@ def __dots__(n, pos, dx, dy, r = -1, q = 0): # dots for dotted polyline or circl
dots
+=
[(
__Point__
(
px
,
py
),
__Point__
(
px
+
7
,
py
+
7
))]
return
dots
def
__draw__
(
d
):
def
__draw__
(
d
,
count
=
True
):
shape
=
_
.
doc
.
createInstance
(
"com.sun.star.drawing."
+
d
)
shape
.
AnchorType
=
__AT_PAGE__
shape
.
TextWrap
=
__THROUGHT__
...
...
@@ -799,7 +799,8 @@ def __draw__(d):
_
.
drawpage
.
add
(
shape
)
if
__group__
:
__group__
.
add
(
shape
)
_
.
shapecache
[
next
(
_
.
shapecount
)]
=
str
(
_
.
time
)
if
count
:
_
.
shapecache
[
next
(
_
.
shapecount
)]
=
str
(
_
.
time
)
return
shape
def
__zoom__
():
...
...
@@ -895,7 +896,7 @@ def __fillit__(filled = True):
__removeshape__
(
__ACTUAL__
)
# FIXME close dotted polyline
return
if
oldshape
and
"LineShape"
in
oldshape
.
ShapeType
:
shape
=
__draw__
(
"PolyPolygonShape"
)
shape
=
__draw__
(
"PolyPolygonShape"
,
False
)
shape
.
PolyPolygon
=
oldshape
.
PolyPolygon
shape
.
setPosition
(
oldshape
.
getPosition
())
shape
.
LineStyle
,
shape
.
LineDash
=
__linestyle__
(
_
.
linestyle
)
...
...
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