Skip to content
This repository was archived by the owner on Nov 25, 2023. It is now read-only.

Commit faa2d3a

Browse files
authored
Merge pull request #93 from Invvard/feature/update-control-info
Feature/update control info
2 parents a36ade0 + 1a76b1d commit faa2d3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/InvvardDev.EZLayoutDisplay.Desktop/ViewModel/DisplayLayoutViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ private void SetLabelUi()
234234
NoLayoutWarningSecondLine = "Please, go to the settings and update the layout.";
235235
CurrentLayerNameTitle = "Current layer :";
236236
CurrentLayerName = "";
237-
ControlHintSpaceLabel = "Press 'Space' to display next layer";
237+
ControlHintSpaceLabel = "Scroll up/down or press 'Space' to display next layer";
238238
ControlHintEscapeLabel = "Press 'Escape' to hide window";
239239
ToggleBtnPinWindowContent = "_Pin window";
240240
ToggleBtnPinWindowTooltip = "Press 'P' to toggle";

src/InvvardDev.EZLayoutDisplay.Tests/ViewModel/DisplayLayoutViewModelTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void DisplayLayoutViewModel_Constructor()
4747
Assert.Equal("Please, go to the settings and update the layout.", displayLayoutViewModel.NoLayoutWarningSecondLine);
4848
Assert.Equal("Current layer :", displayLayoutViewModel.CurrentLayerNameTitle);
4949
Assert.Equal("", displayLayoutViewModel.CurrentLayerName);
50-
Assert.Equal("Press 'Space' to display next layer", displayLayoutViewModel.ControlHintSpaceLabel);
50+
Assert.Equal("Scroll up/down or press 'Space' to display next layer", displayLayoutViewModel.ControlHintSpaceLabel);
5151
Assert.Equal("Press 'Escape' to hide window", displayLayoutViewModel.ControlHintEscapeLabel);
5252
Assert.Equal("_Pin window", displayLayoutViewModel.ToggleBtnPinWindowContent);
5353
Assert.Equal("Press 'P' to toggle", displayLayoutViewModel.ToggleBtnPinWindowTooltip);

0 commit comments

Comments
 (0)