| Index: third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js b/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
|
| index 79eb624f1ba576f9172601921fd9fea2f365b510..84947698190777bd8b9aa2b23079868426e7ce76 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/persistence/PersistenceUtils.js
|
| @@ -27,13 +27,13 @@ Persistence.PersistenceUtils = class {
|
| return null;
|
| var binding = Persistence.persistence.binding(uiSourceCode);
|
| if (binding) {
|
| - var icon = UI.Icon.create('smallicon-file-sync');
|
| + var icon = UI.Icon.create('mediumicon-file-sync');
|
| icon.title = Persistence.PersistenceUtils.tooltipForUISourceCode(binding.fileSystem);
|
| return icon;
|
| }
|
| if (uiSourceCode.project().type() !== Workspace.projectTypes.FileSystem)
|
| return null;
|
| - var icon = UI.Icon.create('smallicon-file');
|
| + var icon = UI.Icon.create('mediumicon-file');
|
| icon.title = Persistence.PersistenceUtils.tooltipForUISourceCode(uiSourceCode);
|
| return icon;
|
| }
|
|
|