aboutsummaryrefslogtreecommitdiff
path: root/devel/electron29/files/patch-ui_views_style_platform__style.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron29/files/patch-ui_views_style_platform__style.cc')
-rw-r--r--devel/electron29/files/patch-ui_views_style_platform__style.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/electron29/files/patch-ui_views_style_platform__style.cc b/devel/electron29/files/patch-ui_views_style_platform__style.cc
new file mode 100644
index 000000000000..7f3181a4f7ea
--- /dev/null
+++ b/devel/electron29/files/patch-ui_views_style_platform__style.cc
@@ -0,0 +1,29 @@
+--- ui/views/style/platform_style.cc.orig 2023-02-01 18:43:52 UTC
++++ ui/views/style/platform_style.cc
+@@ -17,7 +17,7 @@
+ #include "ui/views/controls/focusable_border.h"
+ #include "ui/views/controls/scrollbar/scroll_bar_views.h"
+
+-#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
++#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
+ #include "ui/views/controls/scrollbar/overlay_scroll_bar.h"
+ #endif
+
+@@ -50,7 +50,7 @@ const View::FocusBehavior PlatformStyle::kDefaultFocus
+ // Linux clips bubble windows that extend outside their parent window
+ // bounds.
+ const bool PlatformStyle::kAdjustBubbleIfOffscreen =
+-#if BUILDFLAG(IS_LINUX)
++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
+ false;
+ #else
+ true;
+@@ -58,7 +58,7 @@ const bool PlatformStyle::kAdjustBubbleIfOffscreen =
+
+ // static
+ std::unique_ptr<ScrollBar> PlatformStyle::CreateScrollBar(bool is_horizontal) {
+-#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
++#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
+ return std::make_unique<OverlayScrollBar>(is_horizontal);
+ #else
+ return std::make_unique<ScrollBarViews>(is_horizontal);