blob: ed735614e37f574a8f18f9ec5be13f80154690bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- ui/native_theme/native_theme_features.cc.orig 2025-03-24 20:50:14 UTC
+++ ui/native_theme/native_theme_features.cc
@@ -73,7 +73,7 @@ bool IsFluentOverlayScrollbarEnabled() {
bool IsFluentOverlayScrollbarEnabled() {
// Fluent scrollbars are only used for some OSes due to UI design guidelines.
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
return base::FeatureList::IsEnabled(features::kFluentOverlayScrollbar);
#else
return false;
@@ -82,7 +82,7 @@ bool IsFluentScrollbarEnabled() {
bool IsFluentScrollbarEnabled() {
// Fluent scrollbars are only used for some OSes due to UI design guidelines.
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
return base::FeatureList::IsEnabled(features::kFluentScrollbar) ||
IsFluentOverlayScrollbarEnabled();
#else
|