Files
helium/patches/ungoogled-chromium/enable-menu-on-reload-button.patch
wukko e67c0db58f patches: move everything from contrib to root dir (#557)
now all chromium patches in all helium repos follow
the same dir pattern: `<vendor>/<group>/<...>/<patch>`

and there's no longer a "contrib" dir which was admittedly
kind of confusing
2025-12-04 01:43:34 +06:00

14 lines
431 B
C++

# Add ability to always open dev context menu on reload button.
--- a/chrome/browser/ui/views/toolbar/reload_button.cc
+++ b/chrome/browser/ui/views/toolbar/reload_button.cc
@@ -132,7 +132,7 @@ bool ReloadButton::GetMenuEnabled() cons
}
void ReloadButton::SetMenuEnabled(bool is_menu_enabled) {
- is_menu_enabled_ = is_menu_enabled;
+ is_menu_enabled_ = true;
UpdateAccessibleHasPopup();
UpdateCachedTooltipText();
}