Bugzilla – Attachment 104217 Details for
Bug 62054
Can't use Cmd+A in "Save As..." window on Mac
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
select-all-undo-redo-in-save-as-dialog.diff (text/plain), 1.12 KB, created by
Matthew Francis
on 2014-08-07 10:25:28 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Matthew Francis
Created:
2014-08-07 10:25:28 UTC
Size:
1.12 KB
patch
obsolete
>diff --git a/vcl/osx/vclnsapp.mm b/vcl/osx/vclnsapp.mm >index ea544f7..d1d086f 100644 >--- a/vcl/osx/vclnsapp.mm >+++ b/vcl/osx/vclnsapp.mm >@@ -200,6 +200,24 @@ > if( [NSApp sendAction: @selector(cut:) to: nil from: nil] ) > return; > } >+ else if( [[pEvent charactersIgnoringModifiers] isEqualToString: @"a"] ) >+ { >+ if( [NSApp sendAction: @selector(selectAll:) to: nil from: nil] ) >+ return; >+ } >+ else if( [[pEvent charactersIgnoringModifiers] isEqualToString: @"z"] ) >+ { >+ if( [NSApp sendAction: @selector(undo:) to: nil from: nil] ) >+ return; >+ } >+ } >+ else if( nModMask == (NSCommandKeyMask|NSShiftKeyMask) ) >+ { >+ if( [[pEvent charactersIgnoringModifiers] isEqualToString: @"Z"] ) >+ { >+ if( [NSApp sendAction: @selector(redo:) to: nil from: nil] ) >+ return; >+ } > } > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 62054
: 104217