Closed
Bug 817705
Opened 12 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•12 years ago
|
||
Indeed, we just hide instead of disabling.
Assignee | ||
Comment 3•12 years ago
|
||
Attachment #690854 -
Flags: review?(jwalker)
Assignee | ||
Updated•12 years ago
|
Priority: -- → P2
Whiteboard: [has-patch]
Assignee | ||
Updated•12 years ago
|
QA Contact: paul
Updated•12 years ago
|
Assignee: nobody → paul
QA Contact: paul
Assignee | ||
Comment 4•12 years ago
|
||
review ping?
Comment 5•12 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•12 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•12 years ago
|
Whiteboard: [has-patch] → [land-in-fx-team]
Assignee | ||
Comment 7•12 years ago
|
||
https://hg.mozilla.org/integration/fx-team/rev/3f2d435dfe60
Whiteboard: [land-in-fx-team] → [fixed-in-fx-team]
Comment 8•12 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/3f2d435dfe60
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 20
Updated•6 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•