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
ddd8bf48
Commit
ddd8bf48
authored
Jun 26, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcbnew: fixed bug 2810360 (negative plots in postscript format create complete black board)
parent
539f041b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
plot_rtn.cpp
pcbnew/plot_rtn.cpp
+3
-3
No files found.
pcbnew/plot_rtn.cpp
View file @
ddd8bf48
...
...
@@ -349,7 +349,7 @@ static void PlotTextModule( TEXTE_MODULE* pt_texte, int format_plot )
break
;
}
PlotGraphicText
(
format_plot
,
pos
,
BLACK
,
PlotGraphicText
(
format_plot
,
pos
,
g_Plot_PS_Negative
?
WHITE
:
BLACK
,
pt_texte
->
m_Text
,
orient
,
size
,
pt_texte
->
m_HJustify
,
pt_texte
->
m_VJustify
,
...
...
@@ -631,7 +631,7 @@ void PlotTextePcb( TEXTE_PCB* pt_texte, int format_plot, int masque_layer )
for
(
unsigned
i
=
0
;
i
<
list
->
Count
();
i
++
)
{
wxString
txt
=
list
->
Item
(
i
);
PlotGraphicText
(
format_plot
,
pos
,
BLACK
,
PlotGraphicText
(
format_plot
,
pos
,
g_Plot_PS_Negative
?
WHITE
:
BLACK
,
txt
,
orient
,
size
,
pt_texte
->
m_HJustify
,
pt_texte
->
m_VJustify
,
...
...
@@ -643,7 +643,7 @@ void PlotTextePcb( TEXTE_PCB* pt_texte, int format_plot, int masque_layer )
}
else
PlotGraphicText
(
format_plot
,
pos
,
BLACK
,
PlotGraphicText
(
format_plot
,
pos
,
g_Plot_PS_Negative
?
WHITE
:
BLACK
,
pt_texte
->
m_Text
,
orient
,
size
,
pt_texte
->
m_HJustify
,
pt_texte
->
m_VJustify
,
...
...
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