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
2fc643de
Commit
2fc643de
authored
Jan 02, 2013
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema, Libedit: Fix potential issues when using some hot keys.
parent
9c62d2df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
hotkeys.cpp
eeschema/hotkeys.cpp
+21
-12
No files found.
eeschema/hotkeys.cpp
View file @
2fc643de
...
...
@@ -543,7 +543,7 @@ void LIB_EDIT_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
cmd
.
SetEventObject
(
this
);
bool
itemInEdit
=
m_drawItem
&&
m_drawItem
->
GetFlags
();
bool
itemInEdit
=
m_drawItem
&&
m_drawItem
->
InEditMode
();
/* Convert lower to upper case (the usual toupper function has problem
* with non ascii codes like function keys */
...
...
@@ -598,10 +598,13 @@ void LIB_EDIT_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
break
;
case
HK_REPEAT_LAST
:
if
(
m_lastDrawItem
&&
(
m_lastDrawItem
->
GetFlags
()
==
0
)
&&
(
m_lastDrawItem
->
Type
()
==
LIB_PIN_T
)
)
RepeatPinItem
(
aDC
,
(
LIB_PIN
*
)
m_lastDrawItem
);
break
;
if
(
!
itemInEdit
)
{
if
(
m_lastDrawItem
&&
!
m_lastDrawItem
->
InEditMode
()
&&
(
m_lastDrawItem
->
Type
()
==
LIB_PIN_T
)
)
RepeatPinItem
(
aDC
,
(
LIB_PIN
*
)
m_lastDrawItem
);
}
break
;
case
HK_EDIT
:
if
(
!
itemInEdit
)
...
...
@@ -648,8 +651,11 @@ void LIB_EDIT_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
break
;
case
HK_LIBEDIT_CREATE_PIN
:
SetToolID
(
ID_LIBEDIT_PIN_BUTT
,
wxCURSOR_PENCIL
,
_
(
"Add Pin"
)
);
OnLeftClick
(
aDC
,
aPosition
);
if
(
!
itemInEdit
)
{
SetToolID
(
ID_LIBEDIT_PIN_BUTT
,
wxCURSOR_PENCIL
,
_
(
"Add Pin"
)
);
OnLeftClick
(
aDC
,
aPosition
);
}
break
;
case
HK_DELETE
:
...
...
@@ -677,12 +683,15 @@ void LIB_EDIT_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
break
;
case
HK_DRAG
:
m_drawItem
=
LocateItemUsingCursor
(
aPosition
);
if
(
m_drawItem
&&
!
m_drawItem
->
InEditMode
()
)
if
(
!
itemInEdit
)
{
cmd
.
SetId
(
ID_POPUP_LIBEDIT_MODIFY_ITEM
);
Process_Special_Functions
(
cmd
);
m_drawItem
=
LocateItemUsingCursor
(
aPosition
);
if
(
m_drawItem
&&
!
m_drawItem
->
InEditMode
()
)
{
cmd
.
SetId
(
ID_POPUP_LIBEDIT_MODIFY_ITEM
);
Process_Special_Functions
(
cmd
);
}
}
break
;
}
...
...
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