Skip to content

Commit e09b91c

Browse files
committed
Fixed crash when send tabs to desktop
fix brave/brave-browser#45198
1 parent 888ed4e commit e09b91c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chromium_src/chrome/browser/ui/views/toolbar/pinned_toolbar_actions_container.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void PinnedToolbarActionsContainer::UpdateActionState(actions::ActionId id,
2323
void PinnedToolbarActionsContainer::ShowActionEphemerallyInToolbar(
2424
actions::ActionId id,
2525
bool show) {
26-
if (id != kActionShowDownloads) {
26+
if (id != kActionShowDownloads && id != kActionSendTabToSelf) {
2727
return;
2828
}
2929
PinnedToolbarActionsContainer::ShowActionEphemerallyInToolbar_ChromiumImpl(

0 commit comments

Comments
 (0)