Closed
Bug 590621
Opened 15 years ago
Closed 15 years ago
Console panels feature a confusing control
Categories
(DevTools :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: dangoor, Assigned: jwalker)
References
Details
(Whiteboard: [kd4b7])
Attachments
(2 files)
|
6.34 KB,
image/png
|
Details | |
|
1.34 KB,
patch
|
Gavin
:
review+
pcwalton
:
feedback+
Gavin
:
approval2.0+
|
Details | Diff | Splinter Review |
When you open a panel in the console (such as the property viewer) it has a confusing control that does not have any labeling and doesn't seem to do anything useful. This should be eliminated.
(Worst case scenario would be adding a string to at least have a label next to the checkbox, but much better is for the control to go away)
| Reporter | ||
Updated•15 years ago
|
Severity: normal → blocker
| Reporter | ||
Updated•15 years ago
|
Assignee: mihai.sucan → jwalker
| Reporter | ||
Comment 1•15 years ago
|
||
Reprioritizing bugs. You can filter the mail on the word TEABAGS.
Severity: blocker → normal
Whiteboard: [kd4b6] → [kd4b7]
| Reporter | ||
Updated•15 years ago
|
Blocks: devtools4b8
| Assignee | ||
Comment 2•15 years ago
|
||
This comes down to:
// Create the tree.
- let tree = this.tree = createElement(aDocument, "tree", { flex: 1 });
+ let tree = this.tree = createElement(aDocument, "tree", {
+ flex: 1,
+ hidecolumnpicker: "true"
+ });
let treecols = aDocument.createElement("treecols");
appendChild(aDocument, treecols, "treecol", {
primary: "true",
- flex: 1
+ flex: 1,
+ hideheader: "true",
+ ignoreincolumnpicker: "true"
});
tree.appendChild(treecols);
Updated•15 years ago
|
Attachment #474669 -
Flags: feedback+
| Assignee | ||
Updated•15 years ago
|
Attachment #474669 -
Flags: review?(gavin.sharp)
Comment 3•15 years ago
|
||
Comment on attachment 474669 [details] [diff] [review]
[checked-in] Upload 1
>diff --git a/toolkit/components/console/hudservice/PropertyPanel.jsm b/toolkit/components/console/hudservice/PropertyPanel.jsm
> appendChild(aDocument, treecols, "treecol", {
> primary: "true",
>- flex: 1
>+ flex: 1,
>+ hideheader: "true",
>+ ignoreincolumnpicker: "true"
I think these are redundant (hideheader because you don't specify a label, ignorecolumnpicker because the picker isn't shown to begin with), but I suppose they don't hurt to include.
Attachment #474669 -
Flags: review?(gavin.sharp)
Attachment #474669 -
Flags: review+
Attachment #474669 -
Flags: approval2.0+
Comment 4•15 years ago
|
||
Comment on attachment 474669 [details] [diff] [review]
[checked-in] Upload 1
http://hg.mozilla.org/mozilla-central/rev/eb7dbf19dfb3
Attachment #474669 -
Attachment description: Upload 1 → [checked-in] Upload 1
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Updated•8 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•