Skip to content

Commit 3bd4630

Browse files
authored
Merge pull request #2920 from Krypton-Suite/187-feature-request-can-the-extended-kit-scrollbars-be-placed-into-standard-and-used-by-all-controls-that-have-scrollability
* Disable styled scrollbars by default
2 parents 0f16eb6 + 41c96ed commit 3bd4630

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,14 +407,14 @@ public bool UseKryptonFileDialogs
407407
/// </summary>
408408
[Category(@"Visuals")]
409409
[Description(@"Should scrollable controls use Krypton-themed scrollbars instead of native scrollbars.")]
410-
[DefaultValue(true)]
410+
[DefaultValue(false)]
411411
public bool GlobalUseKryptonScrollbars
412412
{
413413
get => UseKryptonScrollbars;
414414
set => UseKryptonScrollbars = value;
415415
}
416416
private bool ShouldSerializeGlobalUseKryptonScrollbars() => GlobalUseKryptonScrollbars;
417-
private void ResetGlobalUseKryptonScrollbars() => GlobalUseKryptonScrollbars = true;
417+
private void ResetGlobalUseKryptonScrollbars() => GlobalUseKryptonScrollbars = false;
418418

419419

420420
/// <summary>

0 commit comments

Comments
 (0)