Skip to content

Commit edc3f0f

Browse files
feat(DevTools): Allow configure DevTools HotKey (#16668)
1 parent 7a42c7e commit edc3f0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Avalonia.Diagnostics/Diagnostics/DevToolsOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ public class DevToolsOptions
6161
/// <summary>
6262
/// Gets or inits the <see cref="HotKeyConfiguration" /> used to activate DevTools features
6363
/// </summary>
64-
internal HotKeyConfiguration HotKeys { get; init; } = new();
64+
public HotKeyConfiguration HotKeys { get; init; } = new();
6565
}
6666
}

src/Avalonia.Diagnostics/Diagnostics/HotKeyConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Avalonia.Diagnostics
44
{
5-
internal class HotKeyConfiguration
5+
public class HotKeyConfiguration
66
{
77
/// <summary>
88
/// Freezes refreshing the Value Frames inspector for the selected Control

0 commit comments

Comments
 (0)