Skip to content

Commit

Permalink
Bug fix: Incorrect icon in folder picker for "Synced Clippings" folder
Browse files Browse the repository at this point in the history
  • Loading branch information
aecreations committed Aug 14, 2018
1 parent 02de567 commit d4b9255
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/chrome/content/new.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,10 @@ function chooseFolder(aFolderURI)
gFolderMenu.setAttribute("label", gStrBundle.getString("clippingsRoot"));
gFolderMenu.style.listStyleImage = "url('chrome://clippings/skin/images/clippings-root.svg')";
}
else if (fldrURI == gClippingsSvc.kSyncFolderURI) {
gFolderMenu.setAttribute("label", gStrBundle.getString("syncFldrLabel"));
gFolderMenu.style.listStyleImage = "url('chrome://clippings/skin/images/synced-clippings.svg')";
}
else {
gFolderMenu.setAttribute("label", gClippingsSvc.getName(fldrURI));
gFolderMenu.style.listStyleImage = "url('chrome://clippings/skin/images/folder.svg')";
Expand Down

0 comments on commit d4b9255

Please sign in to comment.