Closed
Bug 390226
Opened 18 years ago
Closed 18 years ago
[Trunk] Lightning breaks Thunderbird view layout
Categories
(Calendar :: Lightning Only, defect)
Calendar
Lightning Only
Tracking
(Not tracked)
VERIFIED
FIXED
0.7
People
(Reporter: torindel, Assigned: torindel)
References
()
Details
Attachments
(1 file, 1 obsolete file)
|
2.44 KB,
patch
|
dbo
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.5) Gecko/20070720 Firefox/2.0.0.5
Build Identifier: TRUNK: Mon Jul 30 12:58:08 CEST 2007 [Thunderbird: version 3.0a1pre (2007073023) / Lightning: version 0.6a1 (2007073023)]
Without lightning thunderbird looks normal, after loading its layout brakes
Details in screen-shoot :)
Linux localhost 2.6.22-gentoo-r1 #1 SMP PREEMPT Sat Jul 28 19:35:15 CEST 2007 x86_64 AMD Turion(tm) 64 X2 Mobile Technology TL-50 AuthenticAMD GNU/Linux
gcc (GCC) 4.2.0 (Gentoo 4.2.0)
cairo-gtk2 toolkit
Reproducible: Always
Steps to Reproduce:
1.Load Lightning plugin
Actual Results:
See screenshot
Expected Results:
Look at normal version of lightning
Comment 2•18 years ago
|
||
Maybe the changes from bug 389730 are the cause of this bug.
Component: General → Lightning Only
QA Contact: general → lightning
Summary: Loading lightning brakes thunderbird screen layout → Lightning breaks Thunderbird view layout
Version: unspecified → Trunk
Layout bug appeared between 2007-07-28-03 nightly build (last ok) and 2007-07-29-03 of thunderbird (tested with 20070730 lightning)
Another thing i noticed is out of place calendar widget which disappears after clicking anywhere: http://img252.imageshack.us/img252/1323/51466679at6.png
Updated•18 years ago
|
Summary: Lightning breaks Thunderbird view layout → [Trunk] Lightning breaks Thunderbird view layout
mschroeder was right https://bugzilla.mozilla.org/show_bug.cgi?id=389730 was the case
(thunderbird trunk with it removed + lightning trunk works ok)
Looks fixed ;]
Status: UNCONFIRMED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Updated•18 years ago
|
Status: RESOLVED → UNCONFIRMED
Resolution: FIXED → ---
Updated•18 years ago
|
Attachment #274795 -
Flags: review?(daniel.boelzle)
Updated•18 years ago
|
Assignee: nobody → torindel
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Linux → All
Hardware: PC → All
Updated•18 years ago
|
Status: NEW → ASSIGNED
Comment 8•18 years ago
|
||
Comment on attachment 274795 [details] [diff] [review]
Patch for lightning to be compatible with trunk thunderbird (bug 389730)
>--- mozilla/calendar/base/content/today-pane.xul~ 2007-07-30 >-<box id="mailContent">
>+<box id="messengerBox">
Please use preprocessor #ifdef MOZILLA_1_8_BRANCH, so we could keep trunk and branch in sync.
>--- mozilla/calendar/lightning/content/messenger-overlay-sidebar.xul~ >-<hbox id="mailContent" flex="1">
>+<box id="messengerBox" orient="horizontal" flex="1" minheight="100" heigh="100" persist="height">
Apart from misspelling height, please remove those properties; ought not be necessary. Please use only a different id, i.e.
#ifdef MOZILLA_1_8_BRANCH
<hbox id="mailContent" flex="1">
#else
<hbox id="messengerBox" flex="1">
#endif
r- for now.
Attachment #274795 -
Flags: review?(daniel.boelzle) → review-
Attachment #274795 -
Attachment is obsolete: true
Attachment #275139 -
Flags: review?(daniel.boelzle)
Comment 10•18 years ago
|
||
Comment on attachment 275139 [details] [diff] [review]
Lightning thunderbird-trunk-layout compatibility patch
r=dbo; thanks for the patch!
Attachment #275139 -
Flags: review?(daniel.boelzle) → review+
Comment 11•18 years ago
|
||
Checked in on HEAD and MOZILLA_1_8_BRANCH.
Status: ASSIGNED → RESOLVED
Closed: 18 years ago → 18 years ago
Resolution: --- → FIXED
Target Milestone: --- → 0.7
Updated•17 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•