Closed
Bug 372571
Opened 18 years ago
Closed 17 years ago
Edit menu shortcuts don't work in Save file picker
Categories
(Core :: Widget: Cocoa, defect, P2)
Tracking
()
VERIFIED
FIXED
mozilla1.9
People
(Reporter: jruderman, Assigned: jaas)
References
(Blocks 1 open bug)
Details
(Keywords: dogfood, regression)
Attachments
(1 file, 4 obsolete files)
22.62 KB,
patch
|
vlad
:
superreview+
|
Details | Diff | Splinter Review |
Steps to reproduce (in Firefox trunk):
1. Cmd+S
2. Try to use an editing shortcut (e.g. Left, Cmd+A)
Result: The "Edit" menu highlights temporarily but nothing happens in the file picker.
Expected: The shortcuts should work like they do everywhere else (including in the file picker as used in other applications).
Updated•18 years ago
|
Flags: in-litmus?
Flags: blocking1.9?
Flags: blocking1.9? → blocking1.9+
Keywords: regression
Left (and Cmd-Left) and Up/Down do WFM in a 20071230 Minefield on 10.5.1/Intel, but Cmd-A and other shortcuts that appear in the Edit menu still exhibit comment 0.
See also bug 372571 about problems with the Open filepicker (those WFM, however).
Summary: Editing shortcuts don't work in Mac file picker → Edit menu shortcuts don't work in Save file picker
Er, make that "See also bug 410921" :p
Comment 5•17 years ago
|
||
This is a bigger issue than just the shortcut keys! As described in bug 407586, the functionality is in fact disabled in the edit menu as well: functions like copy, paste, and select all are grayed out and entirely unavailable.
Or, almost so. I've just this moment observed some particularly odd behavior regarding this bug (running FF3b3 on Mac OS 10.4). If the cursor is in this bugzilla text field when I say "Save Page As...", the Paste option /is/ available in the Edit menu, but it pastes the text into the text field, not into the dialog box. This occurs regardless of what text is selected (or not) in the Save As dialog. Particularly odd is the fact that the keyboard shortcut does /not/ work when attempting to paste in that way! (It doesn't paste either to the dialog box or to the text area.)
I would love, love, love to see this fixed in the final release of Firefox 3. I don't have a lot of time for bug fixing at the moment, but if anyone who knows the code could give me an idea of where to start looking to fix this, there's some (small) chance that I could write a patch. (I don't know when I'd find the time, but I'd at least try.) But someone who knows what they're doing could presumably fix this much faster than I could (and with less hand-holding).
Updated•17 years ago
|
Severity: normal → major
Updated•17 years ago
|
Flags: tracking1.9+
Comment 9•17 years ago
|
||
At a guess, time. This bug is labeled a P2: it's important enough that it needs to get fixed, but (as I understand it) it isn't the sort of thing that will require extensive beta testing. That is, the fix will probably be something fairly simple with little chance of accidentally breaking other parts of the program. So the primary developers make a point of fixing the more "fragile" or complicated bugs earlier than the easy ones. (I suppose that there could actually be some really subtle focus issue involved that I'm just not aware of, but that seems less likely to me.)
Assignee | ||
Comment 10•17 years ago
|
||
Right, I have a good idea of how to fix this but I haven't gotten to it yet.
Assignee | ||
Comment 11•17 years ago
|
||
Saving my work. This has things working for the file picker, needs to be reorganized so it can work for other native dialogs like the printing dialog. This patch will break embedding, have to fix that up too.
Assignee | ||
Comment 12•17 years ago
|
||
Attachment #310916 -
Attachment is obsolete: true
Assignee | ||
Comment 13•17 years ago
|
||
This is the same as fix v0.6 but it does not include an implementation for the printing dialog. For some reason, probably having to do with our Carbon printing impl, the change just does nothing. We call Cocoa setMainMenu: as expected but the menu does not change before the printing dialog goes up. Since it isn't critical we should move on and file a followup bug about that.
Attachment #311372 -
Attachment is obsolete: true
Attachment #311383 -
Flags: review?(smichaud)
Comment 14•17 years ago
|
||
Josh, this basically looks fine, but I found a bug:
1) Make one of the native app-modal dialogs appear (say by doing
command-o or File : Open File) -- your custom menu becomes the main
menu (as it should).
2) Choose Minefield : Hide Minefield or do command-h -- Minefield will
get hidden (as it should).
3) Unhide Minefield (by clicking on its Dock icon or doing
command-tab) -- Minefield will re-appear, but now the main menu
will be set to the original (full) main menu (the one attached to
the window above which the native app-modal dialog appeared).
Assignee | ||
Comment 15•17 years ago
|
||
Comment on attachment 311383 [details] [diff] [review]
fix v1.0
v1.0 has another major problem, if there is no key window after the modal dialog closes then you're stuck with the menu bar from the modal dialog. You can do this by closing all windows, hitting cmd-o to get an open file dialog, and hitting cancel.
Attachment #311383 -
Attachment is obsolete: true
Attachment #311383 -
Flags: review?(smichaud)
Assignee | ||
Comment 16•17 years ago
|
||
Fixes the hide/show bug that Steven found in comment #14 and the bug I found in comment #15.
Attachment #311499 -
Flags: review?(smichaud)
Comment 17•17 years ago
|
||
Comment on attachment 311499 [details] [diff] [review]
fix v1.1
This looks fine to me, and I didn't see any problems in my tests (on
OS X 10.5.2 and 10.4.11).
I've confirmed that it fixes the problems described in my comment #14
and Josh's comment #15.
Attachment #311499 -
Flags: review?(smichaud) → review+
Attachment #311499 -
Flags: superreview?(vladimir)
I'm not at all comfortable sr'ing this quickly; if someone knows this code better than me, please bounce over to them, otherwise I'll spend some time with it in the next day or so.
Assignee | ||
Comment 19•17 years ago
|
||
A note on the localization comment in that patch - we should file a followup bug on that and fix it later. There is no easy fix and I don't want to spend time in the 1.9 end game fixing something that probably won't realistically affect many users.
Ok, spent a bit reading through this -- I'm really not all that happy about adding those methods into nsIAppShell.idl. Is there any other way to get to the same class?
Assignee | ||
Comment 21•17 years ago
|
||
Eventually we want to access those outside of widget code, like from printingui. For that, we need them to be in some xpcom object, the two most obvious are toolkit and appshell. Appshell just seemed like the better of the two options.
Assignee | ||
Comment 22•17 years ago
|
||
Skip exposing the API via XPCOM for now.
Attachment #311499 -
Attachment is obsolete: true
Attachment #311741 -
Flags: superreview?(vladimir)
Attachment #311499 -
Flags: superreview?(vladimir)
Comment on attachment 311741 [details] [diff] [review]
fix v1.2
Ah, that works for me -- nsCocoaUtils sounds like a great place for it. Thanks!
Attachment #311741 -
Flags: superreview?(vladimir) → superreview+
Assignee | ||
Comment 24•17 years ago
|
||
landed on trunk
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Comment 25•17 years ago
|
||
Verified with Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9pre) Gecko Minefield/3.0pre ID:2008032723
Status: RESOLVED → VERIFIED
Hardware: PC → All
Target Milestone: --- → mozilla1.9
Comment 26•17 years ago
|
||
https://litmus.mozilla.org/show_test.cgi?id=5238 had been added to Litmus.
Flags: in-litmus? → in-litmus+
You need to log in
before you can comment on or make changes to this bug.
Description
•