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
0980306f
Commit
0980306f
authored
Aug 11, 2010
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix stylesheet
parent
97767241
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
netlist_control.cpp
eeschema/netlist_control.cpp
+4
-1
netlist_form_pads-pcb.xsl
eeschema/plugins/netlist_form_pads-pcb.xsl
+4
-3
No files found.
eeschema/netlist_control.cpp
View file @
0980306f
...
...
@@ -189,7 +189,9 @@ WinEDA_NetlistFrame::WinEDA_NetlistFrame( WinEDA_SchematicFrame* parent ) :
SetSizer
(
GeneralBoxSizer
);
m_NoteBook
=
new
wxNotebook
(
this
,
ID_NETLIST_NOTEBOOK
,
wxDefaultPosition
,
wxDefaultSize
);
wxDefaultPosition
,
wxDefaultSize
,
wxNB_TOP
);
// @todo: tabs on top are being hidden on linux
GeneralBoxSizer
->
Add
(
m_NoteBook
,
0
,
wxGROW
|
wxALL
,
5
);
// Add notebook pages:
...
...
@@ -229,6 +231,7 @@ WinEDA_NetlistFrame::WinEDA_NetlistFrame( WinEDA_SchematicFrame* parent ) :
// GetSizer()->Fit( this );
GetSizer
()
->
SetSizeHints
(
this
);
Centre
();
}
...
...
eeschema/plugins/netlist_form_pads-pcb.xsl
View file @
0980306f
...
...
@@ -20,14 +20,15 @@
<!-- for each component -->
<xsl:template
match=
"comp"
>
<xsl:text>
</xsl:text>
<xsl:value-of
select=
"@ref"
/>
<xsl:text>
</xsl:text>
<xsl:choose>
<xsl:when
test =
"footprint
= ''
"
>
<xsl:
text>
unknown
</xsl:text
>
<xsl:when
test =
"footprint
!= ''
"
>
<xsl:
apply-templates
select=
"footprint"
/
>
</xsl:when>
<xsl:otherwise>
<xsl:
apply-templates
select=
"footprint"
/
>
<xsl:
text>
unknown
</xsl:text
>
</xsl:otherwise>
</xsl:choose>
<xsl:text>
&nl;
</xsl: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