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
afedb361
Commit
afedb361
authored
Sep 26, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gerberview & pcbnew fixes
parent
9c5b539e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
783 additions
and
684 deletions
+783
-684
change_log.txt
change_log.txt
+6
-4
rs274d.cpp
gerbview/rs274d.cpp
+773
-677
class_track.cpp
pcbnew/class_track.cpp
+4
-3
No files found.
change_log.txt
View file @
afedb361
...
...
@@ -7,15 +7,17 @@ email address.
2007-Sep-25 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
+ pcbnew
*
got rid of reference to global display options DisplayOpt.DisplayZones from
*
removed reference to global display options DisplayOpt.DisplayZones in
collectors.cpp so collectors.cpp can continue to be used in multiple future
(non-display related) general contexts.
(non-display related) general contexts. I don't want unnecessary dependencies
in there. The way to completely ignore a type is to exclude it from scanList.
The way to sometimes ignore a type is to add support for this in COLLECTORS_GUIDE.
* Moved TYPEZONE to end of AllBoardItems, added GENERAL_COLLECTOR::AllButZones to
provide support
of
DisplayOpt.DisplayZones.
provide support
for
DisplayOpt.DisplayZones.
* Added aHotKeyCode to PcbGeneralLocateAndDisplay()
+ gerbview
* viewer was getting stuck in a loop when loading a bad gerber file. Fixed
the bug, but line 223 through 225 of readgerb.cpp need review.
the bug, but line 223 through 225 of readgerb.cpp need
s
review.
* beautified a few files with uncrustify, (any I had to look at).
...
...
gerbview/rs274d.cpp
View file @
afedb361
This diff is collapsed.
Click to expand it.
pcbnew/class_track.cpp
View file @
afedb361
...
...
@@ -246,7 +246,8 @@ void SEGVIA::SetLayerPair( int top_layer, int bottom_layer )
if
(
via_type
==
VIA_NORMALE
)
{
top_layer
=
LAYER_CMP_N
;
bottom_layer
=
LAYER_CUIVRE_N
;
top_layer
=
LAYER_CMP_N
;
bottom_layer
=
LAYER_CUIVRE_N
;
}
if
(
bottom_layer
>
top_layer
)
...
...
@@ -695,12 +696,12 @@ void TRACK::Display_Infos( WinEDA_DrawFrame* frame )
||
Type
()
==
TYPEVIA
)
{
EQUIPOT
*
equipot
=
((
WinEDA_PcbFrame
*
)
frame
)
->
m_Pcb
->
FindNet
(
m_NetCode
);
if
(
equipot
)
{
msg
=
equipot
->
m_Netname
;
}
else
msg
=
wxT
(
"<noname>"
);
Affiche_1_Parametre
(
frame
,
text_pos
,
_
(
"NetName"
),
msg
,
RED
);
/* Affiche net code :*/
...
...
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