Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
fda26f50
Commit
fda26f50
authored
May 28, 2017
by
SergeyLuzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug with connectors in group
parent
9b902575
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
103 additions
and
22 deletions
+103
-22
common/Drawings/CommonController.js
common/Drawings/CommonController.js
+0
-8
common/Drawings/Format/GraphicObjectBase.js
common/Drawings/Format/GraphicObjectBase.js
+3
-0
common/Drawings/TrackObjects/ConnectorTrack.js
common/Drawings/TrackObjects/ConnectorTrack.js
+99
-14
common/Shapes/SerializeWriter.js
common/Shapes/SerializeWriter.js
+1
-0
No files found.
common/Drawings/CommonController.js
View file @
fda26f50
...
...
@@ -707,8 +707,6 @@ function DrawingObjectsController(drawingObjects)
this
.
chartForProps
=
null
;
this
.
lastOverObject
=
null
;
this
.
handleEventMode
=
HANDLE_EVENT_MODE_HANDLE
;
}
...
...
@@ -724,12 +722,6 @@ function CanStartEditText(oController)
DrawingObjectsController
.
prototype
=
{
handleOleDblClick
:
function
(
drawing
,
e
,
x
,
y
,
pageIndex
)
{
},
getAllConnectors
:
function
(
aDrawings
,
allDrawings
){
var
_ret
=
allDrawings
;
if
(
!
_ret
){
...
...
common/Drawings/Format/GraphicObjectBase.js
View file @
fda26f50
...
...
@@ -261,6 +261,9 @@
this
.
w
=
oBounds
.
w
;
this
.
h
=
oBounds
.
h
;
};
CGraphicBounds
.
prototype
.
copy
=
function
(){
return
new
CGraphicBounds
(
this
.
l
,
this
.
t
,
this
.
r
,
this
.
b
);
};
CGraphicBounds
.
prototype
.
transform
=
function
(
oTransform
){
var
xlt
=
oTransform
.
TransformPointX
(
this
.
l
,
this
.
t
);
...
...
common/Drawings/TrackObjects/ConnectorTrack.js
View file @
fda26f50
This diff is collapsed.
Click to expand it.
common/Shapes/SerializeWriter.js
View file @
fda26f50
...
...
@@ -3472,6 +3472,7 @@ function CBinaryFileWriter()
switch
(
spTree
[
i
].
getObjectType
())
{
case
AscDFH
.
historyitem_type_Shape
:
case
AscDFH
.
historyitem_type_Cnx
:
{
oThis
.
WriteShape
(
spTree
[
i
]);
break
;
...
...
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