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
160ab816
Commit
160ab816
authored
Jul 04, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema: fix bug in Delete Connection (see bug 781604)
parent
d76cd0cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
6 deletions
+16
-6
sch_screen.cpp
eeschema/sch_screen.cpp
+16
-6
No files found.
eeschema/sch_screen.cpp
View file @
160ab816
...
@@ -1136,7 +1136,7 @@ int SCH_SCREEN::GetConnection( const wxPoint& aPosition, PICKED_ITEMS_LIST& aLis
...
@@ -1136,7 +1136,7 @@ int SCH_SCREEN::GetConnection( const wxPoint& aPosition, PICKED_ITEMS_LIST& aLis
continue
;
// Already seen
continue
;
// Already seen
if
(
!
(
item
->
GetFlags
()
&
CANDIDATE
)
)
if
(
!
(
item
->
GetFlags
()
&
CANDIDATE
)
)
continue
;
//
Already seen
continue
;
//
not a candidate
if
(
item
->
Type
()
!=
SCH_LINE_T
)
if
(
item
->
Type
()
!=
SCH_LINE_T
)
continue
;
continue
;
...
@@ -1145,41 +1145,51 @@ int SCH_SCREEN::GetConnection( const wxPoint& aPosition, PICKED_ITEMS_LIST& aLis
...
@@ -1145,41 +1145,51 @@ int SCH_SCREEN::GetConnection( const wxPoint& aPosition, PICKED_ITEMS_LIST& aLis
segment
=
(
SCH_LINE
*
)
item
;
segment
=
(
SCH_LINE
*
)
item
;
/* If the wire start point is connected to a wire that
has already been
found
/* If the wire start point is connected to a wire that
was already
found
* and now is not connected, add the wire to the list. */
* and now is not connected, add the wire to the list. */
SCH_LINE
*
testSegment
=
NULL
;
for
(
tmp
=
GetDrawItems
();
tmp
!=
NULL
;
tmp
=
tmp
->
Next
()
)
for
(
tmp
=
GetDrawItems
();
tmp
!=
NULL
;
tmp
=
tmp
->
Next
()
)
{
{
// Ensure tmp is a previously deleted segment:
if
(
(
tmp
->
GetFlags
()
&
STRUCT_DELETED
)
==
0
)
if
(
(
tmp
->
GetFlags
()
&
STRUCT_DELETED
)
==
0
)
continue
;
continue
;
if
(
tmp
->
Type
()
!=
SCH_LINE_T
)
if
(
tmp
->
Type
()
!=
SCH_LINE_T
)
continue
;
continue
;
testSegment
=
(
SCH_LINE
*
)
tmp
;
SCH_LINE
*
testSegment
=
(
SCH_LINE
*
)
tmp
;
// Test for segment connected to the previously deleted segment:
if
(
testSegment
->
IsEndPoint
(
segment
->
m_Start
)
)
if
(
testSegment
->
IsEndPoint
(
segment
->
m_Start
)
)
break
;
break
;
}
}
if
(
testSegment
&&
!
CountConnectedItems
(
segment
->
m_Start
,
true
)
)
// when tmp != NULL, segment is a new candidate:
// put it in deleted list if
// the start point is not connected to an other item (like pin)
if
(
tmp
&&
!
CountConnectedItems
(
segment
->
m_Start
,
true
)
)
noconnect
=
true
;
noconnect
=
true
;
/* If the wire end point is connected to a wire that has already been found
/* If the wire end point is connected to a wire that has already been found
* and now is not connected, add the wire to the list. */
* and now is not connected, add the wire to the list. */
for
(
tmp
=
GetDrawItems
();
tmp
!=
NULL
;
tmp
=
tmp
->
Next
()
)
for
(
tmp
=
GetDrawItems
();
tmp
!=
NULL
;
tmp
=
tmp
->
Next
()
)
{
{
// Ensure tmp is a previously deleted segment:
if
(
(
tmp
->
GetFlags
()
&
STRUCT_DELETED
)
==
0
)
if
(
(
tmp
->
GetFlags
()
&
STRUCT_DELETED
)
==
0
)
continue
;
continue
;
if
(
tmp
->
Type
()
!=
SCH_LINE_T
)
if
(
tmp
->
Type
()
!=
SCH_LINE_T
)
continue
;
continue
;
SCH_LINE
*
testSegment
=
(
SCH_LINE
*
)
tmp
;
// Test for segment connected to the previously deleted segment:
if
(
testSegment
->
IsEndPoint
(
segment
->
m_End
)
)
if
(
testSegment
->
IsEndPoint
(
segment
->
m_End
)
)
break
;
break
;
}
}
// when tmp != NULL, segment is a new candidate:
// put it in deleted list if
// the end point is not connected to an other item (like pin)
if
(
tmp
&&
!
CountConnectedItems
(
segment
->
m_End
,
true
)
)
if
(
tmp
&&
!
CountConnectedItems
(
segment
->
m_End
,
true
)
)
noconnect
=
true
;
noconnect
=
true
;
...
...
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