Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
3920946e
Commit
3920946e
authored
Feb 18, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed: in module editor: block copy hangs pcbnew
parent
739dbd6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
20 deletions
+10
-20
block_module_editor.cpp
pcbnew/block_module_editor.cpp
+10
-20
No files found.
pcbnew/block_module_editor.cpp
View file @
3920946e
...
...
@@ -413,10 +413,10 @@ void CopyMarkedItems( MODULE* module, wxPoint offset )
D_PAD
*
NewPad
=
new
D_PAD
(
module
);
NewPad
->
Copy
(
pad
);
NewPad
->
m_Selected
=
IS_SELECTED
;
module
->
m_Pads
.
Push
Back
(
NewPad
);
module
->
m_Pads
.
Push
Front
(
NewPad
);
}
for
(
BOARD_ITEM
*
item
=
module
->
m_Drawings
;
item
;
item
->
Next
()
)
for
(
BOARD_ITEM
*
item
=
module
->
m_Drawings
;
item
;
item
=
item
->
Next
()
)
{
if
(
item
->
m_Selected
==
0
)
continue
;
...
...
@@ -469,10 +469,8 @@ void MoveMarkedItems( MODULE* module, wxPoint offset )
{
if
(
pad
->
m_Selected
==
0
)
continue
;
pad
->
GetPosition
().
x
+=
offset
.
x
;
pad
->
GetPosition
().
y
+=
offset
.
y
;
pad
->
m_Pos0
.
x
+=
offset
.
x
;
pad
->
m_Pos0
.
y
+=
offset
.
y
;
pad
->
SetPosition
(
pad
->
GetPosition
()
+
offset
);
pad
->
m_Pos0
+=
offset
;
}
item
=
module
->
m_Drawings
;
...
...
@@ -484,24 +482,16 @@ void MoveMarkedItems( MODULE* module, wxPoint offset )
switch
(
item
->
Type
()
)
{
case
TYPE_TEXTE_MODULE
:
(
(
TEXTE_MODULE
*
)
item
)
->
GetPosition
().
x
+=
offset
.
x
;
(
(
TEXTE_MODULE
*
)
item
)
->
GetPosition
().
y
+=
offset
.
y
;
(
(
TEXTE_MODULE
*
)
item
)
->
m_Pos0
.
x
+=
offset
.
x
;
(
(
TEXTE_MODULE
*
)
item
)
->
m_Pos0
.
y
+=
offset
.
y
;
(
(
TEXTE_MODULE
*
)
item
)
->
m_Pos
+=
offset
;
(
(
TEXTE_MODULE
*
)
item
)
->
m_Pos0
+=
offset
;
break
;
case
TYPE_EDGE_MODULE
:
(
(
EDGE_MODULE
*
)
item
)
->
m_Start
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_
Start
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start
+=
offset
;
(
(
EDGE_MODULE
*
)
item
)
->
m_
End
+=
offset
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start0
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start0
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End0
.
x
+=
offset
.
x
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End0
.
y
+=
offset
.
y
;
(
(
EDGE_MODULE
*
)
item
)
->
m_Start0
+=
offset
;
(
(
EDGE_MODULE
*
)
item
)
->
m_End0
+=
offset
;
break
;
default
:
...
...
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