File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
sources/Windowing/Windowing Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public interface IDisplay : IEquatable<IDisplay>
52
52
/// <summary>
53
53
/// Gets a colloquial name for the display. This may change, but hopefully not to something the end user won't recognise.
54
54
/// </summary>
55
- string Name { get ; }
55
+ string Description { get ; }
56
56
57
57
/// <summary>
58
58
/// An event raised when <see cref="Bounds" /> and/or <see cref="WorkArea" /> changes.
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ private bool UpdateDisplayModes()
129
129
130
130
public bool IsPrimary => Sdl . GetPrimaryDisplay ( ) == Id ;
131
131
132
- public string Name => Sdl . GetDisplayName ( Id ) . ReadToString ( ) ;
132
+ public string Description => Sdl . GetDisplayName ( Id ) . ReadToString ( ) ;
133
133
134
134
public event Action < DisplayCoordinatesEvent > ? CoordinatesChanged ;
135
135
private Action < DisplayVideoModeAvailabilityChangeEvent > ? _knownVideoModesChanged ;
You can’t perform that action at this time.
0 commit comments