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
8ef7cf77
Commit
8ef7cf77
authored
Apr 29, 2008
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more layer listbox issues
parent
9e46a779
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
0 deletions
+18
-0
files.cpp
pcbnew/files.cpp
+1
-0
pcbnew.cpp
pcbnew/pcbnew.cpp
+3
-0
tool_pcb.cpp
pcbnew/tool_pcb.cpp
+3
-0
todo.txt
todo.txt
+11
-0
No files found.
pcbnew/files.cpp
View file @
8ef7cf77
...
@@ -81,6 +81,7 @@ void WinEDA_PcbFrame::Files_io( wxCommandEvent& event )
...
@@ -81,6 +81,7 @@ void WinEDA_PcbFrame::Files_io( wxCommandEvent& event )
GetScreen
()
->
m_FileName
.
Printf
(
wxT
(
"%s%cnoname%s"
),
GetScreen
()
->
m_FileName
.
Printf
(
wxT
(
"%s%cnoname%s"
),
wxGetCwd
().
GetData
(),
DIR_SEP
,
PcbExtBuffer
.
GetData
()
);
wxGetCwd
().
GetData
(),
DIR_SEP
,
PcbExtBuffer
.
GetData
()
);
SetTitle
(
GetScreen
()
->
m_FileName
);
SetTitle
(
GetScreen
()
->
m_FileName
);
ReCreateLayerBox
(
NULL
);
break
;
break
;
case
ID_LOAD_FILE_1
:
case
ID_LOAD_FILE_1
:
...
...
pcbnew/pcbnew.cpp
View file @
8ef7cf77
...
@@ -90,6 +90,9 @@ bool WinEDA_App::OnInit()
...
@@ -90,6 +90,9 @@ bool WinEDA_App::OnInit()
if
(
!
FFileName
.
IsEmpty
()
)
if
(
!
FFileName
.
IsEmpty
()
)
{
{
m_PcbFrame
->
LoadOnePcbFile
(
FFileName
,
FALSE
);
m_PcbFrame
->
LoadOnePcbFile
(
FFileName
,
FALSE
);
// update the layer names in the listbox
m_PcbFrame
->
ReCreateLayerBox
(
NULL
);
}
}
return
TRUE
;
return
TRUE
;
...
...
pcbnew/tool_pcb.cpp
View file @
8ef7cf77
...
@@ -629,6 +629,9 @@ void WinEDA_PcbFrame::ReCreateAuxiliaryToolbar()
...
@@ -629,6 +629,9 @@ void WinEDA_PcbFrame::ReCreateAuxiliaryToolbar()
m_SelViaSizeBox_Changed
=
TRUE
;
m_SelViaSizeBox_Changed
=
TRUE
;
m_SelTrackWidthBox_Changed
=
TRUE
;
m_SelTrackWidthBox_Changed
=
TRUE
;
ReCreateLayerBox
(
NULL
);
SetToolbars
();
SetToolbars
();
}
}
...
...
todo.txt
View file @
8ef7cf77
...
@@ -74,3 +74,14 @@ edges editable. (DONE)
...
@@ -74,3 +74,14 @@ edges editable. (DONE)
2) final solution: get rid of requirement for tracks buried within a zone.
2) final solution: get rid of requirement for tracks buried within a zone.
Review the GEDA source code and other sources to gather ideas before doing 2).
Review the GEDA source code and other sources to gather ideas before doing 2).
2008-Apr-29 Assigned To:
asked by: Dick Hollenbeck
================================================================================
+pcbnew
When picking new board from the menu, when an existing board is already
in memory, the number of layers in the new board is not set to the default
but rather to the number of layers in the previously loaded board, and with
the default layer names, rather than the layer names of the previously
loaded board. I think the number of layers should be reduced to the
default and the default layer names should be used.
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