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
be57e57e
Commit
be57e57e
authored
Feb 06, 2012
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typos
parent
3da1b75c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
CHANGELOG.txt
CHANGELOG.txt
+2
-2
class_board.cpp
pcbnew/class_board.cpp
+0
-1
class_board_design_settings.cpp
pcbnew/class_board_design_settings.cpp
+1
-1
No files found.
CHANGELOG.txt
View file @
be57e57e
...
...
@@ -21,12 +21,12 @@ email address.
* Removed dialog_copper_zones.h since DIALOG class is now declared in *.cpp.
* Renamed to enum ZONE_EDIT_T in zones.h
* SetVisibleAlls() is not called as it was in two previous cases for several
reasons. BOARD_DESIGN_SETTINGS constructor controls what is visible initially
.
reasons. BOARD_DESIGN_SETTINGS constructor controls what is visible initially
,
and in the near future so will the *.brd file. I believe the user should
have visibility setting rentention accross editing sessions of zones,
fields, etc.
* BOARD_DESIGN_SETTINGS constructor initializes hidden text as not visible.
* Added PCB_EDIT_FRAME::
SyncRenderStates() and PCB_LAYER_WIDGET::s
yncRenderStates()
* Added PCB_EDIT_FRAME::
syncRenderStates() and PCB_LAYER_WIDGET::S
yncRenderStates()
so the checkboxes can be set after loading a BOARD file containing previous
visibility settings.
...
...
pcbnew/class_board.cpp
View file @
be57e57e
...
...
@@ -532,7 +532,6 @@ void BOARD::SetVisibleElements( int aMask )
}
// these are not tidy, since there are PCB_VISIBLEs that are not stored in the bitmap.
void
BOARD
::
SetVisibleAlls
()
{
SetVisibleLayers
(
FULL_LAYERS
);
...
...
pcbnew/class_board_design_settings.cpp
View file @
be57e57e
...
...
@@ -21,7 +21,7 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS()
SetVisibleLayers
(
FULL_LAYERS
);
// set all but hidden text as visible.
m_VisibleElements
=
-
1
&
~
(
1
<<
MOD_TEXT_INVISIBLE
);
m_VisibleElements
=
~
(
1
<<
MOD_TEXT_INVISIBLE
);
SetCopperLayerCount
(
2
);
// Default design is a double sided board
...
...
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