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
e64d8e52
Commit
e64d8e52
authored
Sep 26, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OnLeftClick() test case
parent
b707a833
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
change_log.txt
change_log.txt
+1
-0
edit.cpp
pcbnew/edit.cpp
+2
-2
No files found.
change_log.txt
View file @
e64d8e52
...
@@ -11,6 +11,7 @@ email address.
...
@@ -11,6 +11,7 @@ email address.
test case for OnLeftClick() handling from a release circumstance.
test case for OnLeftClick() handling from a release circumstance.
a few simple changes to void WinEDA_DrawPanel::OnMouseEvent( wxMouseEvent& event ),
a few simple changes to void WinEDA_DrawPanel::OnMouseEvent( wxMouseEvent& event ),
but they affect all programs in a subtle way.
but they affect all programs in a subtle way.
TAB key allow double clicking, but is not needed for block selection.
+ pcbnew
+ pcbnew
GENERAL_COLLECTOR::GetCount() returns int, not unsigned. Was tired of the
GENERAL_COLLECTOR::GetCount() returns int, not unsigned. Was tired of the
...
...
pcbnew/edit.cpp
View file @
e64d8e52
...
@@ -90,8 +90,8 @@ void WinEDA_PcbFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
...
@@ -90,8 +90,8 @@ void WinEDA_PcbFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
}
}
}
}
else
/*
if( !wxGetKeyState(WXK_SHIFT) && !wxGetKeyState(WXK_ALT) &&
else
if
(
!
wxGetKeyState
(
WXK_SHIFT
)
&&
!
wxGetKeyState
(
WXK_ALT
)
&&
!wxGetKeyState(WXK_CONTROL) && !wxGetKeyState(WXK_TAB) )
*/
!
wxGetKeyState
(
WXK_CONTROL
)
&&
!
wxGetKeyState
(
WXK_TAB
)
)
{
{
DrawStruct
=
PcbGeneralLocateAndDisplay
();
DrawStruct
=
PcbGeneralLocateAndDisplay
();
if
(
DrawStruct
)
if
(
DrawStruct
)
...
...
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