Closed
Bug 817705
Opened 13 years ago
Closed 12 years ago
[toolbox] Disable Inspect Mode when switching tools in Toolbox
Categories
(DevTools :: Inspector, defect, P2)
DevTools
Inspector
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 20
People
(Reporter: rcampbell, Assigned: paul)
References
Details
Attachments
(1 file)
1.13 KB,
patch
|
jwalker
:
review+
|
Details | Diff | Splinter Review |
STR:
1. Open Toolbox via Inspect keyboard shortcut (Cmd-alt-I)
2. Select another tool in the Toolbox Toolbar, e.g., Web Console.
Expected Results:
Highlighter is locked on last hovered item. (Alternately, highlighter could go away)
Actual:
We stay in Inspect mode and the highlighter selection follows mouse in content.
Assignee | ||
Comment 2•13 years ago
|
||
Indeed, we just hide instead of disabling.
Assignee | ||
Comment 3•13 years ago
|
||
Attachment #690854 -
Flags: review?(jwalker)
Assignee | ||
Updated•13 years ago
|
Priority: -- → P2
Whiteboard: [has-patch]
Assignee | ||
Updated•13 years ago
|
QA Contact: paul
Updated•13 years ago
|
Assignee: nobody → paul
QA Contact: paul
Assignee | ||
Comment 4•13 years ago
|
||
review ping?
Comment 5•13 years ago
|
||
Comment on attachment 690854 [details] [diff] [review]
patch v1
Review of attachment 690854 [details] [diff] [review]:
-----------------------------------------------------------------
::: browser/devtools/inspector/Highlighter.jsm
@@ +144,5 @@
> this.hide();
> } else {
> + if (!this.locked) {
> + this.attachMouseListeners();
> + }
Is this a better way of doing this than adding/removing the listeners/timeouts in show/hide?
Attachment #690854 -
Flags: review?(jwalker) → review+
Assignee | ||
Comment 6•13 years ago
|
||
(In reply to Joe Walker [:joe_walker] [:jwalker] from comment #5)
> Comment on attachment 690854 [details] [diff] [review]
> patch v1
>
> Review of attachment 690854 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> ::: browser/devtools/inspector/Highlighter.jsm
> @@ +144,5 @@
> > this.hide();
> > } else {
> > + if (!this.locked) {
> > + this.attachMouseListeners();
> > + }
>
> Is this a better way of doing this than adding/removing the
> listeners/timeouts in show/hide?
Yes. We might want to hide but keep the highlighting mechanism.
Assignee | ||
Updated•13 years ago
|
Whiteboard: [has-patch] → [land-in-fx-team]
Assignee | ||
Comment 7•13 years ago
|
||
Whiteboard: [land-in-fx-team] → [fixed-in-fx-team]
Comment 8•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 20
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•