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
f8100747
Commit
f8100747
authored
Sep 14, 2010
by
Brian F. G. Bidulock
Committed by
Dick Hollenbeck
Sep 14, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gerbview fixes
parent
0ebe9878
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
rs274d.cpp
gerbview/rs274d.cpp
+1
-1
rs274x.cpp
gerbview/rs274x.cpp
+2
-2
No files found.
gerbview/rs274d.cpp
View file @
f8100747
...
...
@@ -1209,7 +1209,7 @@ bool GERBER::Execute_DCODE_Command( WinEDA_GerberFrame* frame,
pcb
->
m_Track
.
Append
(
track
);
D
(
printf
(
"R:%p
\n
"
,
track
);
)
fillRoundFlashTRACK
(
track
,
dcode
,
activeLayer
,
m_Current
Pos
,
diameter
,
exposure
);
cur
Pos
,
diameter
,
exposure
);
}
break
;
...
...
gerbview/rs274x.cpp
View file @
f8100747
...
...
@@ -537,9 +537,9 @@ bool GetEndOfBlock( char buff[GERBER_BUFZ], char*& text, FILE* gerber_file )
static
bool
CheckForLineEnd
(
char
buff
[
GERBER_BUFZ
],
char
*&
text
,
FILE
*
fp
)
{
while
(
*
text
==
'\n'
||
!*
text
)
while
(
*
text
==
'\n'
||
*
text
==
'\r'
||
!*
text
)
{
if
(
*
text
==
'\n'
)
if
(
*
text
==
'\n'
||
*
text
==
'\r'
)
++
text
;
if
(
!*
text
)
...
...
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