diff --git a/README.md b/README.md index 6cf1ec8..a3ce1cc 100644 --- a/README.md +++ b/README.md @@ -1019,3 +1019,5 @@ MIT License - 업데이트: 2026-04-05 19:38 (KST) - AX Agent 상단 탭이 깨져 보이던 문제를 수정하고, `채팅 / Cowork / 코드` pill 세그먼트 형태를 안정적으로 복구했다. +- 업데이트: 2026-04-05 19:41 (KST) + - AX Agent 빈 상태 상단 심볼은 더 크게 키우고, 대화 주제/작업 유형 프리셋 카드 내부 아이콘은 한 단계 줄여 시각 균형을 조정했다. diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 1e86df3..bb3ab98 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -4764,3 +4764,5 @@ ow + toggle ?쒓컖 ?몄뼱濡??ㅼ떆 ?뺣젹?덈떎. - [ChatWindow.xaml](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Views/ChatWindow.xaml) 의 AX Agent 내부 설정 공통 탭에서 `테마 스타일`, `테마 모드` 섹션을 서비스/모델보다 위로 재배치했습니다. 또 상단 좌측 사이드바 토글 버튼은 3줄 햄버거 아이콘 대신 좌측 패널/본문 구조를 암시하는 패널 토글형 아이콘으로 교체해 메뉴 버튼과 구분되도록 정리했습니다. - 업데이트: 2026-04-05 19:38 (KST) - `ChatWindow.xaml`의 상단 탭 스타일과 헤더 래퍼를 정리해 AX Agent의 `채팅 / Cowork / 코드` 탭이 예전 pill 형태로 다시 보이도록 복구했다. +- 업데이트: 2026-04-05 19:41 (KST) + - `ChatWindow` 빈 상태 상단 심볼 크기를 확대하고, 프리셋 카드/기타/프리셋 추가 카드의 내부 아이콘 크기를 축소해 화면 비율을 정리했다. diff --git a/src/AxCopilot/Views/ChatWindow.xaml b/src/AxCopilot/Views/ChatWindow.xaml index 8e6a8d1..925a0e9 100644 --- a/src/AxCopilot/Views/ChatWindow.xaml +++ b/src/AxCopilot/Views/ChatWindow.xaml @@ -1273,10 +1273,10 @@ HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,14,0,4"> - - diff --git a/src/AxCopilot/Views/ChatWindow.xaml.cs b/src/AxCopilot/Views/ChatWindow.xaml.cs index fd48295..1569b62 100644 --- a/src/AxCopilot/Views/ChatWindow.xaml.cs +++ b/src/AxCopilot/Views/ChatWindow.xaml.cs @@ -12490,17 +12490,17 @@ public partial class ChatWindow : Window var iconCircle = new Border { - Width = 46, Height = 46, - CornerRadius = new CornerRadius(23), + Width = 40, Height = 40, + CornerRadius = new CornerRadius(20), Background = new SolidColorBrush(((SolidColorBrush)btnColor).Color) { Opacity = 0.15 }, HorizontalAlignment = HorizontalAlignment.Center, - Margin = new Thickness(0, 0, 0, 12), + Margin = new Thickness(0, 0, 0, 10), }; var iconTb = new TextBlock { Text = preset.Symbol, FontFamily = new FontFamily("Segoe MDL2 Assets"), - FontSize = 20, + FontSize = 17, Foreground = btnColor, HorizontalAlignment = HorizontalAlignment.Center, VerticalAlignment = VerticalAlignment.Center, @@ -12620,17 +12620,17 @@ public partial class ChatWindow : Window var etcIconCircle = new Border { - Width = 46, Height = 46, - CornerRadius = new CornerRadius(23), + Width = 40, Height = 40, + CornerRadius = new CornerRadius(20), Background = new SolidColorBrush(((SolidColorBrush)etcColor).Color) { Opacity = 0.15 }, HorizontalAlignment = HorizontalAlignment.Center, - Margin = new Thickness(0, 0, 0, 12), + Margin = new Thickness(0, 0, 0, 10), }; etcIconCircle.Child = new TextBlock { Text = "\uE70F", // Edit 아이콘 FontFamily = new FontFamily("Segoe MDL2 Assets"), - FontSize = 20, + FontSize = 17, Foreground = etcColor, HorizontalAlignment = HorizontalAlignment.Center, VerticalAlignment = VerticalAlignment.Center, @@ -12708,10 +12708,10 @@ public partial class ChatWindow : Window { Text = "\uE710", FontFamily = new FontFamily("Segoe MDL2 Assets"), - FontSize = 26, + FontSize = 22, Foreground = secondaryText, HorizontalAlignment = HorizontalAlignment.Center, - Margin = new Thickness(0, 12, 0, 10), + Margin = new Thickness(0, 10, 0, 8), }; addStack.Children.Add(plusIcon);