Changeset 96596 in webkit


Ignore:
Timestamp:
Oct 4, 2011 8:49:50 AM (13 years ago)
Author:
vsevik@chromium.org
Message:

Web Inspector: Timeline panel shortcut for filtering short records should have shorter description.
https://bugs.webkit.org/show_bug.cgi?id=69333

Reviewed by Pavel Feldman.

  • English.lproj/localizedStrings.js:
  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel.prototype._registerShortcuts):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r96594 r96596  
     12011-10-04  Vsevolod Vlasov  <vsevik@chromium.org>
     2
     3        Web Inspector: Timeline panel shortcut for filtering short records should have shorter description.
     4        https://bugs.webkit.org/show_bug.cgi?id=69333
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * English.lproj/localizedStrings.js:
     9        * inspector/front-end/TimelinePanel.js:
     10        (WebInspector.TimelinePanel.prototype._registerShortcuts):
     11
    1122011-10-04  Andreas Kling  <kling@webkit.org>
    213
  • trunk/Source/WebCore/inspector/front-end/TimelinePanel.js

    r96519 r96596  
    240240        var shortRecordThresholdTitle = Number.secondsToString(WebInspector.TimelinePanel.shortRecordThreshold);
    241241        this._shortcuts[shortcut.makeKey("f", modifiers.Shift | modifiers.CtrlOrMeta)] = this._toggleFilterButtonClicked.bind(this);
    242         section.addKey(shortcut.shortcutToString("f", modifiers.Shift | modifiers.CtrlOrMeta), WebInspector.UIString("Toggle filter for the records that are shorter than %s", shortRecordThresholdTitle));
     242        section.addKey(shortcut.shortcutToString("f", modifiers.Shift | modifiers.CtrlOrMeta), WebInspector.UIString("Filter out records shorter than %s", shortRecordThresholdTitle));
    243243
    244244        this._shortcuts[shortcut.makeKey("s", modifiers.CtrlOrMeta)] = this._saveToFile.bind(this);
Note: See TracChangeset for help on using the changeset viewer.