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
6f9fc8d2
Commit
6f9fc8d2
authored
Feb 01, 2011
by
Marco Mattila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix drawing of mirrored texts in pcbnew.
parent
146b7899
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drawtxt.cpp
common/drawtxt.cpp
+1
-1
No files found.
common/drawtxt.cpp
View file @
6f9fc8d2
...
...
@@ -348,7 +348,7 @@ void DrawGraphicText( EDA_DRAW_PANEL* aPanel,
/* if a text size is too small, the text cannot be drawn, and it is drawn as a single
* graphic line */
if
(
aSize
.
x
<
3
)
if
(
ABS
(
aSize
.
x
)
<
3
)
{
/* draw the text as a line always vertically centered */
wxPoint
end
(
current_char_pos
.
x
+
dx
,
current_char_pos
.
y
);
...
...
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