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
640a0685
Commit
640a0685
authored
Feb 17, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some issues.
parent
64288367
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
6 deletions
+13
-6
AboutDialog_main.cpp
common/dialog_about/AboutDialog_main.cpp
+1
-1
drawpanel.cpp
common/drawpanel.cpp
+3
-3
zoom.cpp
common/zoom.cpp
+1
-0
interf_u.pro
demos/interf_u/interf_u.pro
+1
-1
files-io.cpp
eeschema/files-io.cpp
+5
-0
basepcbframe.cpp
pcbnew/basepcbframe.cpp
+1
-0
edit.cpp
pcbnew/edit.cpp
+1
-1
No files found.
common/dialog_about/AboutDialog_main.cpp
View file @
640a0685
...
...
@@ -252,7 +252,7 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"Kenta Yonekura"
),
wxT
(
"midpika@hotmail.com"
),
wxT
(
"Japanese (JA)"
),
new
wxBitmap
(
lang_jp_xpm
)
)
);
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"Milonas Kostas"
),
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"M
anolis Stefanis and M
ilonas Kostas"
),
wxT
(
"milonas.ko@gmail.com"
),
wxT
(
"Greek (el_GR)"
),
new
wxBitmap
(
lang_gr_xpm
)
)
);
...
...
common/drawpanel.cpp
View file @
640a0685
...
...
@@ -1209,10 +1209,10 @@ void EDA_DRAW_PANEL::EndMouseCapture( int id, int cursor, const wxString& title
{
INSTALL_UNBUFFERED_DC
(
dc
,
this
);
m_endMouseCaptureCallback
(
this
,
&
dc
);
m_mouseCaptureCallback
=
NULL
;
m_endMouseCaptureCallback
=
NULL
;
m_AutoPAN_Request
=
false
;
}
m_mouseCaptureCallback
=
NULL
;
m_endMouseCaptureCallback
=
NULL
;
m_AutoPAN_Request
=
false
;
if
(
id
!=
-
1
&&
cursor
!=
-
1
)
{
...
...
common/zoom.cpp
View file @
640a0685
...
...
@@ -119,6 +119,7 @@ void EDA_DRAW_FRAME::OnZoom( wxCommandEvent& event )
break
;
case
ID_POPUP_ZOOM_CENTER
:
center
=
screen
->
GetCrossHairPosition
();
RedrawScreen
(
center
,
true
);
break
;
...
...
demos/interf_u/interf_u.pro
View file @
640a0685
update
=
04
/
02
/
2011
22
:
02
:
3
3
update
=
17
/
02
/
2011
19
:
33
:
1
3
version
=
1
last_client
=
pcbnew
[
common
]
...
...
eeschema/files-io.cpp
View file @
640a0685
...
...
@@ -89,7 +89,12 @@ bool SCH_EDIT_FRAME::SaveEEFile( SCH_SCREEN* screen, int FileSave )
if
(
!
success
)
DisplayError
(
this
,
_
(
"File write operation failed."
)
);
else
{
screen
->
ClrModify
();
wxString
msg
;
msg
.
Printf
(
wxT
(
"File %s saved"
),
GetChars
(
screen
->
GetFileName
()
)
);
SetStatusText
(
msg
,
0
);
}
fclose
(
f
);
...
...
pcbnew/basepcbframe.cpp
View file @
640a0685
...
...
@@ -129,6 +129,7 @@ void WinEDA_BasePcbFrame::CursorGoto( const wxPoint& aPos )
/* There may be need to reframe the drawing. */
if
(
!
DrawPanel
->
IsPointOnDisplay
(
aPos
)
)
{
screen
->
SetCrossHairPosition
(
aPos
);
RedrawScreen
(
aPos
,
true
);
}
else
...
...
pcbnew/edit.cpp
View file @
640a0685
...
...
@@ -120,7 +120,7 @@ void WinEDA_PcbFrame::Process_Special_Functions( wxCommandEvent& event )
case
ID_POPUP_CANCEL_CURRENT_COMMAND
:
if
(
DrawPanel
->
IsMouseCaptured
()
)
{
DrawPanel
->
m_endMouseCaptureCallback
(
DrawPanel
,
&
dc
);
DrawPanel
->
EndMouseCapture
(
);
}
/* Should not be executed, just in case */
...
...
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