projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f5c62f
)
use Cmd-C under Mac to copy text, not Ctrl-C
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Wed, 18 Jan 2006 16:47:42 +0000
(16:47 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Wed, 18 Jan 2006 16:47:42 +0000
(16:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36974
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/html/htmlwin.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/html/htmlwin.cpp
b/src/html/htmlwin.cpp
index 353f589c3aa1573b424e6821be66aec9cdd42e18..7654b4b86282455c5365a3c213c075e3f556127b 100644
(file)
--- a/
src/html/htmlwin.cpp
+++ b/
src/html/htmlwin.cpp
@@
-1306,8
+1306,7
@@
void wxHtmlWindow::OnMouseLeave(wxMouseEvent& event)
void wxHtmlWindow::OnKeyUp(wxKeyEvent& event)
{
- if ( IsSelectionEnabled() &&
- event.GetKeyCode() == 'C' && event.ControlDown() )
+ if ( IsSelectionEnabled() && event.GetKeyCode() == 'C' && event.CmdDown() )
{
(void) CopySelection();
}