Closed
Bug 34007
Opened 25 years ago
Closed 25 years ago
XUL change in cookies and Images prefs dialog
Categories
(SeaMonkey :: Preferences, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: mmastrac, Assigned: matt)
Details
The cookies and images prefs dialog specifies flex="1" for the boxes surrounding
the buttons, causing extra whitespace in the button to be added in some cases
(where the description text above it spans only a single line). This can be
fixed by removing the attribute.
I'm not totally sure if the behaviour of flex="1" on the <box> element in this
case actually constitutes a bug, however (is this what it should do?). The
effect it has, whether proper or not, is a bug.
I've included a context diff below:
*** pref-cookies.xul Thu Mar 30 18:24:00 2000
--- pref-cookies2.xul Thu Mar 30 18:23:49 2000
***************
*** 93,99 ****
</html:label>
</html:div>
! <box align="horizontal">
<spring flex="1"/>
<titledbutton value="&viewCookies.label;" class="dialog push"
onclick="viewCookies();"/>
</box>
--- 93,99 ----
</html:label>
</html:div>
! <box align="horizontal" flex="1">
<spring flex="1"/>
<titledbutton value="&viewCookies.label;" class="dialog push"
onclick="viewCookies();"/>
</box>
***************
*** 141,147 ****
</html:label>
</html:div>
! <box align="horizontal">
<spring flex="1"/>
<titledbutton value="&viewImages.label;" class="dialog push"
onclick="viewImages();"/>
</box>
--- 141,147 ----
</html:label>
</html:div>
! <box align="horizontal" flex="1">
<spring flex="1"/>
<titledbutton value="&viewImages.label;" class="dialog push"
onclick="viewImages();"/>
Comment 1•25 years ago
|
||
mmastrac@ucalgary.ca - are you still seeing this problem with recent builds of
Mozilla? If so, we'll get this bug confirmed.
Gerv
| Reporter | ||
Comment 2•25 years ago
|
||
Looks like it's been fixed... The code has been changed since this bug was
posted. I tried resizing the window to make the cookies text a single line and
it seemed to be working fine. I'm going to resolve this bug as "fixed".
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Comment 3•25 years ago
|
||
yes, prefs overall have been coming along quite nicely, gui-wise. verif.
Status: RESOLVED → VERIFIED
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•