mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
Finally, after a long wait, an electron port for FreeBSD lands in the portstree. A huge thanks to everyone contributed to this huge effort and to the maintainer that is willing to take the burden of the maintainership!
20 lines
927 B
C++
20 lines
927 B
C++
--- ui/base/ui_base_features.cc.orig 2019-03-16 09:15:20 UTC
|
|
+++ ui/base/ui_base_features.cc
|
|
@@ -120,7 +120,7 @@ const base::Feature kPrecisionTouchpadScrollPhase{
|
|
"PrecisionTouchpadScrollPhase", base::FEATURE_ENABLED_BY_DEFAULT};
|
|
#endif // defined(OS_WIN)
|
|
|
|
-#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
|
|
+#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_BSD)
|
|
// Enables stylus appearing as touch when in contact with digitizer.
|
|
const base::Feature kDirectManipulationStylus = {
|
|
"DirectManipulationStylus",
|
|
@@ -130,7 +130,7 @@ const base::Feature kDirectManipulationStylus = {
|
|
base::FEATURE_DISABLED_BY_DEFAULT
|
|
#endif
|
|
};
|
|
-#endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
|
|
+#endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_BSD)
|
|
|
|
const base::Feature kMash = {"Mash", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|