Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced folder image from bookmarks bar #9424

Merged
merged 1 commit into from
Jul 14, 2021

Conversation

simonhong
Copy link
Member

@simonhong simonhong commented Jul 14, 2021

Resolves brave/brave-browser#16940

Windows:
image
image

macOS:
Screen Shot 2021-07-14 at 10 38 06 AM
Screen Shot 2021-07-14 at 10 38 16 AM

Linux:
image
image

Submitter Checklist:

  • I confirm that no security/privacy review is needed, or that I have requested one
  • There is a ticket for my issue
  • Used Github auto-closing keywords in the PR description above
  • Wrote a good PR/commit description
  • Added appropriate labels (QA/Yes or QA/No; release-notes/include or release-notes/exclude; OS/...) to the associated issue
  • Checked the PR locally: npm run test -- brave_browser_tests, npm run test -- brave_unit_tests, npm run lint, npm run gn_check, npm run tslint
  • Ran git rebase master (if needed)

Reviewer Checklist:

  • A security review is not needed, or a link to one is included in the PR description
  • New files have MPL-2.0 license header
  • Adequate test coverage exists to prevent regressions
  • Major classes, functions and non-trivial code blocks are well-commented
  • Changes in component dependencies are properly reflected in gn
  • Code follows the style guide
  • Test plan is specified in PR before merging

After-merge Checklist:

Test Plan:

@simonhong simonhong self-assigned this Jul 14, 2021
@simonhong simonhong requested a review from a team as a code owner July 14, 2021 01:18
Copy link
Contributor

@mariospr mariospr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, just a minor comment below

@@ -21,4 +34,17 @@ bool ShouldShowAppsShortcutInBookmarkBar(Profile* profile) {
return false;
}

#if defined(TOOLKIT_VIEWS)
ui::ImageModel GetBookmarkFolderIcon(SkColor text_color) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we should consider more cases in this overriden function like upstream does (e.g. BookmarkFolderIconType::kManaged for Win/Mac), but since the goal is to provide Brave-specific assets for folders, I think this is probably fine as is.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like two methods (for normal and for managed) are unified.
I think we can go with this.
In the future, we could consider different folder images.

@simonhong simonhong merged commit f12df87 into master Jul 14, 2021
@simonhong simonhong deleted the bookmarks_bar_folder_image branch July 14, 2021 08:06
@simonhong simonhong added this to the 1.28.x - Nightly milestone Jul 14, 2021
mariospr added a commit that referenced this pull request Jul 16, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 16, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 19, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 20, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 22, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 27, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 28, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mkarolin pushed a commit that referenced this pull request Jul 29, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Jul 30, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mkarolin pushed a commit that referenced this pull request Aug 2, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Aug 4, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mkarolin pushed a commit that referenced this pull request Aug 5, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mkarolin pushed a commit that referenced this pull request Aug 7, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Aug 9, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mariospr added a commit that referenced this pull request Aug 10, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
@NipLars
Copy link

NipLars commented Aug 12, 2021

When will there be customization to pick bookmarks folder icon we like better?
It's so plain looking compared to yellow one.

Why even change it without offering a setting for it?
Thanks.

EDIT: it is yellow in bookmarks manager, but in browser this plain gray thingy. Windows 10.

@LadyMiska
Copy link

Thank You NipLars! I was going to sign up just to ask these questions! ;)

Seriously, WHY make this change without offering a setting for it?

The 'new' folders are UGLY. I'd like the default/yellow folders restored OR a way to restore/change them.

If the option to restore/change the folders can't be given to users, then change the folders back to the default/yellow folders.

Thank You.

@BobT36
Copy link

BobT36 commented Aug 12, 2021

It would indeed be nice to switch these back. My GF likes them, but I find they "blend in" a bit too much with the background, meaning when I'm looking at a mix of normal shortcuts and folders, my eyes can barely register the folders are there.

Is there a setting to switch them back? It's really a personal preference thing. This sort of stuff should ABSOLUTELY be customisable in a web browser..

mkarolin pushed a commit that referenced this pull request Aug 12, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
mkarolin pushed a commit that referenced this pull request Aug 16, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
@pHROZEN-gHOST
Copy link

pHROZEN-gHOST commented Aug 17, 2021

I thought I saw a setting in v129 to opt out of the new grey folder icons on the bar and go back to yellow.
I have v130 nightly installed. That option is not there.

I am not a fan of the way the greay icons appeared and would like to go back.

My current and up to date version of Google Chrome has the yellow icons.

mkarolin pushed a commit that referenced this pull request Aug 18, 2021
Tested on Linux and it preserves the original behaviour from PR #9424.

[1] #9424

Chromium change:

https://source.chromium.org/chromium/chromium/src/+/2a4b9bfb525d77dfeec91be45068f9c95b00a8e9

commit 2a4b9bfb525d77dfeec91be45068f9c95b00a8e9
Author: Peter Kasting <[email protected]>
Date:   Sat Jul 10 01:41:59 2021 +0000

    Avoid accessing NativeTheme too early from bookmarks-related functions.

    This must only be accessed when the caller is in a Widget.  Fixing this
    required significantly reworking how bookmark folder images are handled.

    This also modifies the color of bookmark folders on non-Win, non-Mac
    platforms: they are grey 700 by default (in light mode), like other
    icons, instead of being something closer to grey 600; and when a custom
    theme modifies the bookmark bar text color, folder icons in the overflow
    menu do not change similarly (but keep their standard menu colors).  The
    menu does not necessarily have the same background color as the bookmark
    bar, so matching the bar's foreground color doesn't make sense, doubly
    so when done just for the folder icons and nothing else.

    Bug: 1211091
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update bookmarks folder icon on the bookmarks bar
6 participants