Message pane varies in size in new profiles
Categories
(Thunderbird :: Mail Window Front End, defect)
Tracking
(thunderbird102 fixed)
Tracking | Status | |
---|---|---|
thunderbird102 | --- | fixed |
People
(Reporter: neil, Assigned: darktrojan)
References
(Blocks 1 open bug, Regression)
Details
(Keywords: regression)
Attachments
(1 file)
48 bytes,
text/x-phabricator-request
|
wsmwk
:
approval-comm-beta+
|
Details | Review |
Bug 1752038 introduced the following code:
for (let attrName of ["collapsed", "height", "width"]) {
messagepaneboxwrapper.setAttribute(
attrName,
Services.xulStore.getValue(
"chrome://messenger/content/messenger.xhtml",
"messagepaneboxwrapper",
attrName
)
);
}
Unfortunately this means that in profiles where the user has never adjusted their message pane size, the default dimensions in the XUL html are deleted. This causes the message pane to vary in size according to its content (start page, single message, conversation).
Updated•2 years ago
|
Comment 1•2 years ago
|
||
see Bug 1773257 - Message Pane and Emails list (column) horizonal resizing when changing messages
Assignee | ||
Comment 2•2 years ago
|
||
Updated•2 years ago
|
Pushed by geoff@darktrojan.net:
https://hg.mozilla.org/comm-central/rev/74dfcf858614
Check for attribute values before assigning them to #messagepaneboxwrapper. r=#thunderbird-reviewers,mkmelin
Assignee | ||
Updated•2 years ago
|
Assignee | ||
Comment 5•2 years ago
|
||
Comment on attachment 9281330 [details]
Bug 1774040 - Check for attribute values before assigning them to #messagepaneboxwrapper. r=#thunderbird-reviewers
[Approval Request Comment]
Regression caused by (bug #):
User impact if declined: message pane weirdness due to missing size values
Testing completed (on c-c, etc.): landed yesterday
Risk to taking this patch (and alternatives if risky):
Comment 6•2 years ago
|
||
Comment on attachment 9281330 [details]
Bug 1774040 - Check for attribute values before assigning them to #messagepaneboxwrapper. r=#thunderbird-reviewers
[Triage Comment]
Approved for beta
Updated•2 years ago
|
Comment 7•2 years ago
|
||
bugherder uplift |
Thunderbird 102.0beta7:
https://hg.mozilla.org/releases/comm-beta/rev/a14ae73915cf
Reporter | ||
Comment 8•2 years ago
|
||
Comment on attachment 9281330 [details]
Bug 1774040 - Check for attribute values before assigning them to #messagepaneboxwrapper. r=#thunderbird-reviewers
Sure, seems reasonable.
Description
•