ports/devel/electron32/files/patch-chrome_browser_ui_tabs_features.cc
Hiroki Tagato 63a5b151bf devel/electron32: add port: Build cross-platform desktop apps with JavaScript, HTML, and CSS
Build cross platform desktop apps with JavaScript, HTML, and CSS.

It's easier than you think.

If you can build a website, you can build a desktop app. Electron is a
framework for creating native applications with web technologies like
JavaScript, HTML, and CSS. It takes care of the hard parts so you can
focus on the core of your application.

WWW: https://electronjs.org/
2024-09-23 04:58:21 +09:00

11 lines
612 B
C++

--- chrome/browser/ui/tabs/features.cc.orig 2024-08-14 20:54:40 UTC
+++ chrome/browser/ui/tabs/features.cc
@@ -48,7 +48,7 @@ bool CanShowTabSearchPositionSetting() {
bool CanShowTabSearchPositionSetting() {
// Mac and other platforms will always have the tab search position in the
// correct location, cros/linux/win git the user the option to change.
-#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)
+#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
return base::FeatureList::IsEnabled(kTabSearchPositionSetting);
#else
return false;