Changeset 196596 in webkit


Ignore:
Timestamp:
Feb 15, 2016 1:30:00 PM (8 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: Sidebars are defaulting to their minimum width, instead of a good width
https://bugs.webkit.org/show_bug.cgi?id=154218
rdar://problem/24644192

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/SidebarPanel.js:

(WebInspector.SidebarPanel): Default the setting value to 300 instead of 0, so the minimum isn't used.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r196593 r196596  
     12016-02-15  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: Sidebars are defaulting to their minimum width, instead of a good width
     4        https://bugs.webkit.org/show_bug.cgi?id=154218
     5        rdar://problem/24644192
     6
     7        Reviewed by Joseph Pecoraro.
     8
     9        * UserInterface/Views/SidebarPanel.js:
     10        (WebInspector.SidebarPanel): Default the setting value to 300 instead of 0, so the minimum isn't used.
     11
    1122016-02-15  Timothy Hatcher  <timothy@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/SidebarPanel.js

    r195456 r196596  
    3434        this._selected = false;
    3535
    36         this._widthSetting = new WebInspector.Setting(identifier + "-sidebar-panel-width", 0);
     36        this._widthSetting = new WebInspector.Setting(identifier + "-sidebar-panel-width", 300);
    3737        this._savedScrollPosition = 0;
    3838
Note: See TracChangeset for help on using the changeset viewer.