Closed
Bug 479421
Opened 16 years ago
Closed 16 years ago
saner default handling for sizemode in SM sessionstore
Categories
(SeaMonkey :: Session Restore, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
seamonkey2.0b1
People
(Reporter: misak.bugzilla, Assigned: misak.bugzilla)
References
Details
Attachments
(1 file)
1.13 KB,
patch
|
neil
:
review+
neil
:
superreview+
|
Details | Diff | Splinter Review |
This is port of part of bug 477657, which is landed by another checkin (bug 476463). Some related comments from there:
Omitting a window's sizemode property should preserve the current state (and
not restore to a non-maximized, non-minimized state).
Attachment #363295 -
Flags: superreview?(neil)
Attachment #363295 -
Flags: review?(neil)
Assignee | ||
Updated•16 years ago
|
Assignee: nobody → misak
Status: NEW → ASSIGNED
Updated•16 years ago
|
Attachment #363295 -
Flags: superreview?(neil)
Attachment #363295 -
Flags: superreview+
Attachment #363295 -
Flags: review?(neil)
Attachment #363295 -
Flags: review+
Comment 1•16 years ago
|
||
Comment on attachment 363295 [details] [diff] [review]
patch
[Checkin: Comment 2]
>- case "maximized":
>- if (win_("sizemode") != "maximized")
>- aWindow.maximize();
>- break
>- case "minimized":
>- if (win_("sizemode") != "minimized")
>- aWindow.minimize();
>- break
>- default:
>- if (win_("sizemode") != "normal")
>- aWindow.restore();
>- break
Whoa, the coding style here is all out of whack. I want to get rid of it ASAP!
Assignee | ||
Updated•16 years ago
|
Keywords: checkin-needed
Comment 2•16 years ago
|
||
Comment on attachment 363295 [details] [diff] [review]
patch
[Checkin: Comment 2]
http://hg.mozilla.org/comm-central/rev/2532cb89212e
Attachment #363295 -
Attachment description: patch → patch
[Checkin: Comment 2]
Updated•16 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → seamonkey2.0b1
Updated•16 years ago
|
Component: General → Session Restore
QA Contact: general → session.restore
You need to log in
before you can comment on or make changes to this bug.
Description
•