Skip to content

Commit cd866cb

Browse files
committed
WG comments
1 parent 7fe88dd commit cd866cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sources/Windowing/Windowing/IDisplay.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public interface IDisplay : IEquatable<IDisplay>
5252
/// <summary>
5353
/// Gets a colloquial name for the display. This may change, but hopefully not to something the end user won't recognise.
5454
/// </summary>
55-
string Name { get; }
55+
string Description { get; }
5656

5757
/// <summary>
5858
/// An event raised when <see cref="Bounds" /> and/or <see cref="WorkArea" /> changes.

sources/Windowing/Windowing/Implementations/SDL3/SdlDisplay.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private bool UpdateDisplayModes()
129129

130130
public bool IsPrimary => Sdl.GetPrimaryDisplay() == Id;
131131

132-
public string Name => Sdl.GetDisplayName(Id).ReadToString();
132+
public string Description => Sdl.GetDisplayName(Id).ReadToString();
133133

134134
public event Action<DisplayCoordinatesEvent>? CoordinatesChanged;
135135
private Action<DisplayVideoModeAvailabilityChangeEvent>? _knownVideoModesChanged;

0 commit comments

Comments
 (0)