Changeset 53409 in webkit


Ignore:
Timestamp:
Jan 18, 2010 8:58:16 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-18 Mikhail Naganov <mnaganov@chromium.org>

Reviewed by Timothy Hatcher.

Don't show Profiles welcome screen on panel switch,
if a profile view is shown.

https://bugs.webkit.org/show_bug.cgi?id=33799

  • inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype.show):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53408 r53409  
     12010-01-18  Mikhail Naganov  <mnaganov@chromium.org>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        Don't show Profiles welcome screen on panel switch,
     6        if a profile view is shown.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=33799
     9
     10        * inspector/front-end/ProfilesPanel.js:
     11        (WebInspector.ProfilesPanel.prototype.show):
     12
    1132010-01-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    214
  • trunk/WebCore/inspector/front-end/ProfilesPanel.js

    r53328 r53409  
    158158    {
    159159        WebInspector.Panel.prototype.show.call(this);
    160         this.welcomeView.show();
     160        if (!this.visibleView)
     161            this.welcomeView.show();
    161162        if (this._shouldPopulateProfiles)
    162163            this._populateProfiles();
Note: See TracChangeset for help on using the changeset viewer.