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
71d0f69b
Commit
71d0f69b
authored
Jun 01, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix new bug 791067 created by my last commit.
parent
9092dd0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
edit_component_in_schematic.cpp
eeschema/edit_component_in_schematic.cpp
+3
-1
No files found.
eeschema/edit_component_in_schematic.cpp
View file @
71d0f69b
...
...
@@ -173,7 +173,7 @@ create a new power component with the new value." ), GetChars( entry->GetName()
if
(
!
newtext
.
IsEmpty
()
)
{
if
(
aField
->
m_Text
.
IsEmpty
()
)
if
(
aField
->
m_Text
.
IsEmpty
()
)
// Means the field was not already in use
{
aField
->
m_Pos
=
component
->
m_Pos
;
aField
->
m_Size
.
x
=
aField
->
m_Size
.
y
=
m_TextFieldSize
;
...
...
@@ -192,6 +192,8 @@ create a new power component with the new value." ), GetChars( entry->GetName()
DisplayError
(
this
,
_
(
"Illegal reference string! No change"
)
);
}
}
else
aField
->
m_Text
=
newtext
;
}
else
{
...
...
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