fix smol bug

This commit is contained in:
Sem van der Hoeven
2020-10-13 09:42:24 +02:00
parent 64615feb5e
commit 66efaf736d
2 changed files with 2 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ namespace Server.Models
}
}
return INSTANCE;
return instance;
}
}

View File

@@ -10,5 +10,6 @@
<Button Content="Start Server" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Command="{Binding ServerStartCommand}" IsEnabled="{Binding InformationModel.CanStartServer}"/>
<Label Name="serverStatusLabel" Content="{Binding InformationModel.ServerStatus}" HorizontalAlignment="Left" Margin="169,10,0,0" VerticalAlignment="Top"/>
<Label Content="Server Status:" HorizontalAlignment="Left" Margin="80,7,0,0" VerticalAlignment="Top"/>
<Image Source="https://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/16/Status-user-online-icon.png" HorizontalAlignment="Left" Margin="161,16,0,0" VerticalAlignment="Top" Width="8"/>
</Grid>
</Window>