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
1f34ed05
Commit
1f34ed05
authored
Jul 20, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor bug 1974672 solved
parent
936b1ac9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gr_basic.cpp
common/gr_basic.cpp
+2
-2
No files found.
common/gr_basic.cpp
View file @
1f34ed05
...
...
@@ -266,7 +266,7 @@ void GRSetColorPen( wxDC* DC, int Color, int width, int style )
if
(
width
<
PenMinWidth
)
width
=
PenMinWidth
;
if
(
ForceBlackPen
&&
Color
!=
WHITE
)
if
(
ForceBlackPen
)
{
Color
=
BLACK
;
}
...
...
@@ -300,7 +300,7 @@ void GRSetBrush( wxDC* DC, int Color, int fill )
/***********************************************/
{
Color
&=
MASKCOLOR
;
// Pour 32 couleurs Max
if
(
ForceBlackPen
&&
Color
!=
WHITE
)
if
(
ForceBlackPen
)
Color
=
BLACK
;
wxBrush
DrawBrush
;
DrawBrush
.
SetColour
(
...
...
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