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
11e5d288
Commit
11e5d288
authored
Dec 06, 2007
by
CHARRAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
solved bug when loading a footprint in modedit: invisible text attribute was lost (trunk and tag)
parent
7e8c2e74
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
change_log.txt
change_log.txt
+5
-1
modedit.cpp
pcbnew/modedit.cpp
+2
-4
No files found.
change_log.txt
View file @
11e5d288
...
...
@@ -8,8 +8,12 @@ email address.
2007-Dec-06 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
Solved zoom key command problems (under linux and windows)
+all
Solved zoom key command problems (under linux and windows)
(seen http://sourceforge.net/tracker/index.php?func=detail&aid=1844960&group_id=145591&atid=762476)
+pcbnew
solved bug when loading a footprint in modedit: invisible text attribute was lost (trunk and tag)
2007-Dec-4 UPDATE Dick Hollenbeck <dick@softplc.com>
...
...
pcbnew/modedit.cpp
View file @
11e5d288
...
...
@@ -356,12 +356,10 @@ void WinEDA_ModuleEditFrame::Process_Special_Functions( wxCommandEvent& event )
TEXTE_MODULE
*
val
=
m_Pcb
->
m_Modules
->
m_Value
;
if
(
val
&&
ref
)
{
ref
->
m_NoShow
=
0
;
val
->
m_NoShow
=
0
;
ref
->
m_Type
=
0
;
val
->
m_Type
=
1
;
ref
->
m_Type
=
TEXT_is_REFERENCE
;
// just in case ...
if
(
ref
->
m_Text
.
Length
()
==
0
)
ref
->
m_Text
=
L"Ref**"
;
val
->
m_Type
=
TEXT_is_VALUE
;
// just in case ...
if
(
val
->
m_Text
.
Length
()
==
0
)
val
->
m_Text
=
L"Val**"
;
}
...
...
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