Refactored to only having one executor per platform

This commit is contained in:
watsonb8
2019-07-05 11:37:44 -04:00
parent 0cb0546741
commit a01d399a1f
18 changed files with 226 additions and 170 deletions

View File

@ -110,7 +110,7 @@ namespace Aurora.Frontend.Components.HostSelector
{
string newVal = newValue as string;
HostSelector instance = bindable as HostSelector;
if (instance.HostnameEntry.Text != newValue)
if (instance.HostnameEntry.Text != newVal)
{
instance.HostnameEntry.Text = newVal;
}