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
fcb27438
Commit
fcb27438
authored
Sep 22, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug in modedit (solved): last changes.
parent
2ea76d31
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
change_log.txt
change_log.txt
+6
-0
dialog_edit_module.cpp
pcbnew/dialog_edit_module.cpp
+2
-2
No files found.
change_log.txt
View file @
fcb27438
...
...
@@ -5,6 +5,12 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2008-Sep-17 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+pcbnew:
Fixed a bug in modedit which crashes pcbnew when closing the properties module dialog
Both in trunk and tagged versions
2008-Sep-17 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
...
...
pcbnew/dialog_edit_module.cpp
View file @
fcb27438
...
...
@@ -168,8 +168,6 @@ void WinEDA_ModulePropertiesFrame::BuildPanelModuleProperties( bool FullOptions
wxBoxSizer
*
PropLeftSizer
;
wxBoxSizer
*
PropRightSizer
;
wxString
msg
;
wxStaticText
*
XPositionStatic
=
new
wxStaticText
(
m_PanelProperties
,
-
1
,
_
(
"X"
));
wxStaticText
*
YPositionStatic
=
new
wxStaticText
(
m_PanelProperties
,
-
1
,
_
(
"Y"
));
m_ModPositionX
=
NULL
;
m_ModPositionY
=
NULL
;
...
...
@@ -183,6 +181,8 @@ void WinEDA_ModulePropertiesFrame::BuildPanelModuleProperties( bool FullOptions
if
(
FullOptions
)
// Module is on a board
{
wxStaticText
*
XPositionStatic
=
new
wxStaticText
(
m_PanelProperties
,
-
1
,
_
(
"X"
));
wxStaticText
*
YPositionStatic
=
new
wxStaticText
(
m_PanelProperties
,
-
1
,
_
(
"Y"
));
Button
=
new
wxButton
(
m_PanelProperties
,
ID_MODULE_PROPERTIES_EXCHANGE
,
_
(
"Change module(s)"
)
);
Button
->
SetForegroundColour
(
wxColor
(
80
,
40
,
0
)
);
...
...
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