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
238c12da
Commit
238c12da
authored
Nov 12, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modedit bug fix
parent
b66c00b4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
18 deletions
+31
-18
change_log.txt
change_log.txt
+11
-4
selcolor.cpp
common/selcolor.cpp
+1
-0
modedit.cpp
pcbnew/modedit.cpp
+19
-14
No files found.
change_log.txt
View file @
238c12da
...
@@ -4,6 +4,14 @@ Started 2007-June-11
...
@@ -4,6 +4,14 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.
2007-Nov-11 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
+ pcbnew
Fixed modedit.cpp bug which occurred when selecting a non pad item (such
as a text field) in the module editor, then selecting Dimensions -> Pad Settings
in the module editor.
2007-Nov-11 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
2007-Nov-11 UPDATE Geoff Harland <gharlandau@yahoo.com.au>
================================================================================
================================================================================
+ eeschema & pcbnew & gerbview
+ eeschema & pcbnew & gerbview
...
@@ -1277,7 +1285,6 @@ email address.
...
@@ -1277,7 +1285,6 @@ email address.
incomplete generation of erc file list
incomplete generation of erc file list
2007-June-13 UPDATE Richard A Burton <richardaburton@gmail.com>
2007-June-13 UPDATE Richard A Burton <richardaburton@gmail.com>
================================================================================
================================================================================
+ build:
+ build:
...
...
common/selcolor.cpp
View file @
238c12da
/****************/
/****************/
/* SELCOLOR.CPP */
/* SELCOLOR.CPP */
/****************/
/****************/
...
...
pcbnew/modedit.cpp
View file @
238c12da
...
@@ -573,8 +573,13 @@ void WinEDA_ModuleEditFrame::Process_Special_Functions( wxCommandEvent& event )
...
@@ -573,8 +573,13 @@ void WinEDA_ModuleEditFrame::Process_Special_Functions( wxCommandEvent& event )
break
;
break
;
case
ID_PCB_PAD_SETUP
:
case
ID_PCB_PAD_SETUP
:
InstallPadOptionsFrame
(
(
D_PAD
*
)
GetScreen
()
->
GetCurItem
(),
{
&
dc
,
pos
);
BOARD_ITEM
*
item
=
GetCurItem
();
if
(
item
&&
item
->
Type
()
==
TYPEPAD
)
InstallPadOptionsFrame
(
(
D_PAD
*
)
item
,
&
dc
,
pos
);
else
InstallPadOptionsFrame
(
NULL
,
&
dc
,
pos
);
}
break
;
break
;
case
ID_PCB_USER_GRID_SETUP
:
case
ID_PCB_USER_GRID_SETUP
:
...
...
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