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
297293d4
Commit
297293d4
authored
Aug 29, 2010
by
Heiko Rosemann
Committed by
Dick Hollenbeck
Aug 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
https://lists.launchpad.net/kicad-developers/msg05171.html
parent
9936bef7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drawpanel.cpp
common/drawpanel.cpp
+2
-2
No files found.
common/drawpanel.cpp
View file @
297293d4
...
...
@@ -1180,7 +1180,7 @@ void WinEDA_DrawPanel::OnMouseEvent( wxMouseEvent& event )
s_IgnoreNextLeftButtonRelease
=
false
;
}
if
(
event
.
ButtonUp
(
2
)
if
(
event
.
ButtonUp
(
wxMOUSE_BTN_MIDDLE
)
&&
(
screen
->
m_BlockLocate
.
m_State
==
STATE_NO_BLOCK
)
)
{
// The middle button has been released, with no block command:
...
...
@@ -1283,7 +1283,7 @@ void WinEDA_DrawPanel::OnMouseEvent( wxMouseEvent& event )
}
}
if
(
event
.
ButtonUp
(
1
)
||
event
.
ButtonUp
(
2
)
)
if
(
event
.
ButtonUp
(
wxMOUSE_BTN_LEFT
)
||
event
.
ButtonUp
(
wxMOUSE_BTN_MIDDLE
)
)
{
/* Release the mouse button: end of block.
* The command can finish (DELETE) or have a next command (MOVE,
...
...
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