Closed
Bug 76990
Opened 24 years ago
Closed 24 years ago
Hidden window is visible in Mac OS X dock window menu, breaks focus
Categories
(SeaMonkey :: UI Design, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla0.9.6
People
(Reporter: lordpixel, Assigned: mikepinkerton)
References
Details
Attachments
(1 file)
|
923 bytes,
patch
|
sfraser_bugs
:
superreview+
|
Details | Diff | Splinter Review |
Click and hold the mouse on Fizzilla in the Dock on Mac OS X (Apr 17 build). The
Window meny that comes us includes the Mac "Hidden Window". It shouldn't be visible.
If you select the hidden window, focus gets confused and you must switch in and
out of Mozilla before you can use any windows again.
Comment 2•24 years ago
|
||
This now WFM. Lordpixel, does it work for you, too?
Comment 3•24 years ago
|
||
The hidden window is still visible in the doc Mozilla windows list when using
Mozilla 0.9.2 release.
OS Build : MacOS X 10.0.4 4Q12
When the hidden window is created, it passes the window type
eWindowType_invisible to nsMacWindow::StandardCreate(). The following code could
be added to this function to prevent the hidden window from being visible in the
Dock menu:
#if TARGET_CARBON
if(mWindowType == eWindowType_invisible) {
::ChangeWindowAttributes(mWindowPtr, kWindowNoAttributes,
kWindowInWindowMenuAttribute);
}
#endif
This function must, of course, be called after the window is created.
Updated•24 years ago
|
Assignee: pchen → pinkerton
QA Contact: sairuh → jrgm
Comment 5•24 years ago
|
||
pink?
| Assignee | ||
Comment 6•24 years ago
|
||
that is so sexy. i love open source.
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla0.9.6
| Assignee | ||
Comment 7•24 years ago
|
||
Comment 8•24 years ago
|
||
Comment on attachment 53815 [details] [diff] [review]
remove appropriate attribute when window invisible
sr=sfraser
Attachment #53815 -
Flags: superreview+
| Assignee | ||
Comment 9•24 years ago
|
||
landed on trunk. thanks for the patch!
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Comment 10•22 years ago
|
||
Verified using FizzillaMach/2003-05-25-03-trunk. The hidden window doesn't
appear in the Dock menu.
Status: RESOLVED → VERIFIED
Updated•21 years ago
|
Product: Core → Mozilla Application Suite
You need to log in
before you can comment on or make changes to this bug.
Description
•