Changeset 244616 in webkit


Ignore:
Timestamp:
Apr 24, 2019 2:41:42 PM (5 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Styles: don't start property selection when pressing right mouse button
https://bugs.webkit.org/show_bug.cgi?id=197242
<rdar://problem/50180380>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/SpreadsheetCSSStyleDeclarationSection.js:

(WI.SpreadsheetCSSStyleDeclarationSection.prototype._handleMouseDown):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r244615 r244616  
     12019-04-24  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Styles: don't start property selection when pressing right mouse button
     4        https://bugs.webkit.org/show_bug.cgi?id=197242
     5        <rdar://problem/50180380>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        * UserInterface/Views/SpreadsheetCSSStyleDeclarationSection.js:
     10        (WI.SpreadsheetCSSStyleDeclarationSection.prototype._handleMouseDown):
     11
    1122019-04-24  Devin Rousso  <drousso@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/SpreadsheetCSSStyleDeclarationSection.js

    r244566 r244616  
    392392    _handleMouseDown(event)
    393393    {
     394        if (event.button !== 0)
     395            return;
     396
    394397        this._wasEditing = this._propertiesEditor.editing || document.activeElement === this._selectorElement;
    395398
Note: See TracChangeset for help on using the changeset viewer.