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
3c7846db
Commit
3c7846db
authored
Jun 12, 2007
by
lifekidyeaa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixed a dumb bug that prevented layer switching when over a track. doh!
parent
c094566e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
edit.cpp
pcbnew/edit.cpp
+2
-2
makefile.gtk
pcbnew/makefile.gtk
+2
-2
No files found.
pcbnew/edit.cpp
View file @
3c7846db
...
...
@@ -1364,9 +1364,9 @@ void WinEDA_PcbFrame::SwitchLayer(wxDC *DC, int layer)
GetScreen
()
->
m_Active_Layer
=
preslayer
;
Other_Layer_Route
(
(
TRACK
*
)
GetScreen
()
->
m_CurrentItem
,
DC
);
}
}
else
{
GetScreen
()
->
m_Active_Layer
=
layer
;
}
GetScreen
()
->
m_Active_Layer
=
layer
;
if
(
DisplayOpt
.
ContrastModeDisplay
)
GetScreen
()
->
SetRefreshReq
();
}
...
...
pcbnew/makefile.gtk
View file @
3c7846db
## Makefile for PCBNEW et wxGTK
CC
=
gcc
LD
=
gcc
#
DEBUG = 1
#DEBUG = 1
# Compiler flags.
ifdef
DEBUG
...
...
@@ -9,7 +9,7 @@ CPPFLAGS = -Wall -g `wx-config --cxxflags`
LDFLAGS
=
-g
else
CPPFLAGS
=
-Wall
-O2
`
wx-config
--cxxflags
`
LDFLAGS
=
-s
-v
LDFLAGS
=
-s
endif
include
../libs.linux
...
...
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