diff --git a/P2PLauncher/View/MainLauncherWindow.xaml b/P2PLauncher/View/MainLauncherWindow.xaml
index 98742dc..2db1675 100644
--- a/P2PLauncher/View/MainLauncherWindow.xaml
+++ b/P2PLauncher/View/MainLauncherWindow.xaml
@@ -30,6 +30,7 @@
+
diff --git a/P2PLauncher/View/MainLauncherWindow.xaml.cs b/P2PLauncher/View/MainLauncherWindow.xaml.cs
index 069fcd6..78c6947 100644
--- a/P2PLauncher/View/MainLauncherWindow.xaml.cs
+++ b/P2PLauncher/View/MainLauncherWindow.xaml.cs
@@ -187,6 +187,10 @@ private void OnOpenServicesSettingsButton(object sender, RoutedEventArgs e)
window.ShowDialog();
UpdateWindow();
}
+ private void OnCopyPublicAddressClick(object sender, RoutedEventArgs e)
+ {
+ Clipboard.SetText(LabelPublicAddress.Content.ToString());
+ }
#endregion
@@ -216,6 +220,7 @@ private void OnHubStartClick(object sender, RoutedEventArgs e)
freeLanService.SetMode(FreeLanMode.CLIENT_HUB);
freeLanService.SetPassphrase(TextBoxHubPassword.Text);
freeLanService.SetHostIp(TextBoxHubHost.Text);
+ freeLanService.SetShowShell(CheckBoxDebug.IsChecked.Value);
OnCommonStart();