diff --git a/Dashboard/AddServerDialog.xaml b/Dashboard/AddServerDialog.xaml
index 5d39a23f..84d3e5f1 100644
--- a/Dashboard/AddServerDialog.xaml
+++ b/Dashboard/AddServerDialog.xaml
@@ -2,29 +2,15 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Add SQL Server"
- Height="550" Width="500"
+ SizeToContent="Height" Width="450" MaxHeight="700"
WindowStartupLocation="CenterOwner"
ResizeMode="NoResize"
Background="{DynamicResource BackgroundBrush}"
Foreground="{DynamicResource ForegroundBrush}">
-
-
-
-
-
+
@@ -34,97 +20,93 @@
Foreground="{DynamicResource ForegroundBrush}"/>
-
-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
-
-
+
-
-
-
-
+
+
+
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
-
+
+
+
+
+
-
-
-
+
+
-
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
+
+
diff --git a/Dashboard/Themes/CoolBreezeTheme.xaml b/Dashboard/Themes/CoolBreezeTheme.xaml
index af296540..71b7078b 100644
--- a/Dashboard/Themes/CoolBreezeTheme.xaml
+++ b/Dashboard/Themes/CoolBreezeTheme.xaml
@@ -450,6 +450,41 @@
+
+
+
+
+
diff --git a/Dashboard/Themes/DarkTheme.xaml b/Dashboard/Themes/DarkTheme.xaml
index f3d7c3ae..47165f04 100644
--- a/Dashboard/Themes/DarkTheme.xaml
+++ b/Dashboard/Themes/DarkTheme.xaml
@@ -449,6 +449,41 @@
+
+
+
+
+
diff --git a/Dashboard/Themes/LightTheme.xaml b/Dashboard/Themes/LightTheme.xaml
index ea442a0d..497b1428 100644
--- a/Dashboard/Themes/LightTheme.xaml
+++ b/Dashboard/Themes/LightTheme.xaml
@@ -450,6 +450,41 @@
+
+
+
+
+
diff --git a/Lite/Themes/CoolBreezeTheme.xaml b/Lite/Themes/CoolBreezeTheme.xaml
index 6f4a80cd..6bd705db 100644
--- a/Lite/Themes/CoolBreezeTheme.xaml
+++ b/Lite/Themes/CoolBreezeTheme.xaml
@@ -401,6 +401,41 @@
+
+
+
+
+
diff --git a/Lite/Themes/DarkTheme.xaml b/Lite/Themes/DarkTheme.xaml
index abb73127..2160b01a 100644
--- a/Lite/Themes/DarkTheme.xaml
+++ b/Lite/Themes/DarkTheme.xaml
@@ -401,6 +401,41 @@
+
+
+
+
+
diff --git a/Lite/Themes/LightTheme.xaml b/Lite/Themes/LightTheme.xaml
index 3faa40ed..dc2dab74 100644
--- a/Lite/Themes/LightTheme.xaml
+++ b/Lite/Themes/LightTheme.xaml
@@ -401,6 +401,41 @@
+
+
+
+
+
diff --git a/Lite/Windows/AddServerDialog.xaml b/Lite/Windows/AddServerDialog.xaml
index c804dca2..d02d51dd 100644
--- a/Lite/Windows/AddServerDialog.xaml
+++ b/Lite/Windows/AddServerDialog.xaml
@@ -1,7 +1,7 @@
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
@@ -70,11 +73,11 @@
-
-
@@ -88,14 +91,14 @@
-
-
+
-
-
+
+
diff --git a/Lite/Windows/AddServerDialog.xaml.cs b/Lite/Windows/AddServerDialog.xaml.cs
index 3e70d8af..84fa183f 100644
--- a/Lite/Windows/AddServerDialog.xaml.cs
+++ b/Lite/Windows/AddServerDialog.xaml.cs
@@ -43,7 +43,7 @@ public AddServerDialog(ServerManager serverManager)
///
public AddServerDialog(ServerManager serverManager, ServerConnection existing) : this(serverManager)
{
- Title = "Edit Server";
+ Title = "Edit SQL Server";
ServerNameBox.Text = existing.ServerName;
DisplayNameBox.Text = existing.DisplayName;
EnabledCheckBox.IsChecked = existing.IsEnabled;
@@ -330,7 +330,7 @@ private async void SaveButton_Click(object sender, RoutedEventArgs e)
try
{
- if (AddedServer != null && Title == "Edit Server")
+ if (AddedServer != null && Title == "Edit SQL Server")
{
/* Editing existing server */
AddedServer.ServerName = serverName;