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
f7755bdc
Commit
f7755bdc
authored
Jun 13, 2012
by
Andrey Fedorushkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcbnew: show clearance when move or drag via
parent
c4c2cd3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
class_track.cpp
pcbnew/class_track.cpp
+3
-1
No files found.
pcbnew/class_track.cpp
View file @
f7755bdc
...
@@ -874,8 +874,10 @@ void SEGVIA::Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int draw_mode, const wxPoint
...
@@ -874,8 +874,10 @@ void SEGVIA::Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int draw_mode, const wxPoint
}
}
}
}
if
(
DisplayOpt
.
ShowTrackClearanceMode
==
SHOW_CLEARANCE_ALWAYS
)
if
(
ShowClearance
(
this
)
)
{
GRCircle
(
panel
->
GetClipBox
(),
DC
,
m_Start
+
aOffset
,
radius
+
GetClearance
(),
0
,
color
);
GRCircle
(
panel
->
GetClipBox
(),
DC
,
m_Start
+
aOffset
,
radius
+
GetClearance
(),
0
,
color
);
}
// for Micro Vias, draw a partial cross : X on component layer, or + on copper layer
// for Micro Vias, draw a partial cross : X on component layer, or + on copper layer
// (so we can see 2 superimposed microvias ):
// (so we can see 2 superimposed microvias ):
...
...
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