Fixes to ui scaling

This commit is contained in:
LarsBrubaker 2020-07-22 08:05:39 -07:00
parent eef20b42b8
commit 3431651654
17 changed files with 59 additions and 60 deletions

View file

@ -89,7 +89,8 @@ namespace MatterHackers.MatterControl.Tour
public int ActiveIndex
{
get =>_activeIndex;
get => _activeIndex;
set
{
if (_activeIndex != value)
@ -103,7 +104,7 @@ namespace MatterHackers.MatterControl.Tour
_activeIndex = value;
this.ActiveItem = tourLocations[_activeIndex];
var tourOverlay = new TourOverlay(systemWindow, this, theme);
var tourOverlay = new TourOverlay(this, theme);
systemWindow.AddChild(tourOverlay);
}
}