mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 12:33:44 +02:00
Merge branch 'dev' of http://10.6.6.2/zerotier/ZeroTierOne into dev
This commit is contained in:
commit
ef7faa7291
1 changed files with 14 additions and 0 deletions
|
@ -138,6 +138,8 @@ namespace WinUI
|
||||||
netListLocation.X = netListView.Left;
|
netListLocation.X = netListView.Left;
|
||||||
netListLocation.Y = netListView.Top;
|
netListLocation.Y = netListView.Top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
netListView.Activate();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ShowNetworksClosed(object sender, System.EventArgs e)
|
private void ShowNetworksClosed(object sender, System.EventArgs e)
|
||||||
|
@ -169,6 +171,10 @@ namespace WinUI
|
||||||
joinNetLocation.Y = joinNetView.Top;
|
joinNetLocation.Y = joinNetView.Top;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
joinNetView.Activate();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void JoinNetworkClosed(object sender, System.EventArgs e)
|
private void JoinNetworkClosed(object sender, System.EventArgs e)
|
||||||
|
@ -200,6 +206,10 @@ namespace WinUI
|
||||||
aboutViewLocation.Y = aboutView.Top;
|
aboutViewLocation.Y = aboutView.Top;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
aboutView.Activate();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AboutClosed(object sender, System.EventArgs e)
|
private void AboutClosed(object sender, System.EventArgs e)
|
||||||
|
@ -231,6 +241,10 @@ namespace WinUI
|
||||||
prefsViewLocation.Y = prefsView.Top;
|
prefsViewLocation.Y = prefsView.Top;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
prefsView.Activate();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PreferencesClosed(object sender, System.EventArgs e)
|
private void PreferencesClosed(object sender, System.EventArgs e)
|
||||||
|
|
Loading…
Add table
Reference in a new issue