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
c650c378
Commit
c650c378
authored
Mar 30, 2013
by
Lorenzo Marcantonio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the logic for "do you want to make the footprint visible" requester
(meaning was inverted)
parent
e0303a45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
backanno.cpp
eeschema/backanno.cpp
+2
-4
No files found.
eeschema/backanno.cpp
View file @
c650c378
...
...
@@ -122,10 +122,8 @@ bool SCH_EDIT_FRAME::ProcessCmpToFootprintLinkFile( wxString& aFullFilename,
if
(
aForceFieldsVisibleAttribute
)
{
if
(
aFieldsVisibleAttributeState
)
component
->
GetField
(
FOOTPRINT
)
->
SetVisible
(
false
);
else
component
->
GetField
(
FOOTPRINT
)
->
SetVisible
(
true
);
component
->
GetField
(
FOOTPRINT
)
->
SetVisible
(
aFieldsVisibleAttributeState
);
}
}
}
...
...
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