From 36ded934a03e7c88b33f64264bf6852d20caf653 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Wed, 18 Mar 2026 00:13:03 -0400 Subject: [PATCH] Fix Add Server dialog buttons hidden when SQL auth selected MaxHeight was 700px which wasn't enough to fit the Username/Password fields plus Connection Options plus buttons. Bumped to 850px. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dashboard/AddServerDialog.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dashboard/AddServerDialog.xaml b/Dashboard/AddServerDialog.xaml index d6814f2..ee06c9d 100644 --- a/Dashboard/AddServerDialog.xaml +++ b/Dashboard/AddServerDialog.xaml @@ -2,7 +2,7 @@ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Add SQL Server" - SizeToContent="Height" Width="450" MaxHeight="700" + SizeToContent="Height" Width="450" MaxHeight="850" WindowStartupLocation="CenterOwner" ResizeMode="NoResize" Background="{DynamicResource BackgroundBrush}"