mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
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://www.electronjs.org/
11 lines
504 B
C++
11 lines
504 B
C++
--- extensions/common/command.cc.orig 2024-10-16 21:31:29 UTC
|
|
+++ extensions/common/command.cc
|
|
@@ -286,7 +286,7 @@ std::string Command::CommandPlatform() {
|
|
return values::kKeybindingPlatformMac;
|
|
#elif BUILDFLAG(IS_CHROMEOS)
|
|
return values::kKeybindingPlatformChromeOs;
|
|
-#elif BUILDFLAG(IS_LINUX)
|
|
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
return values::kKeybindingPlatformLinux;
|
|
#elif BUILDFLAG(IS_FUCHSIA)
|
|
// TODO(crbug.com/40220501): Change this once we decide what string should be
|