Skip to content

Commit

Permalink
修复和优化了一些UI问题
Browse files Browse the repository at this point in the history
  • Loading branch information
autodotua committed Apr 18, 2023
1 parent 5b89cd7 commit 9337b6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SimpleFFmpegGUI.WPF/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Title="FFmpeg 工具箱"
Width="1400"
Height="720"
MinWidth="900"
MinWidth="1400"
MinHeight="600"
ui:TitleBar.IsIconVisible="True"
ui:WindowHelper.UseModernWindowStyle="True"
Expand Down
1 change: 1 addition & 0 deletions SimpleFFmpegGUI.WPF/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ private void ResetUI(bool force = false)
grdLeft.RowDefinitions[2].Height = new GridLength(IsUiCompressMode ? 384 : 0);
grdLeft.RowDefinitions[2].MinHeight = IsUiCompressMode ? 384 : 0;
leftSplitter.Visibility = IsUiCompressMode ? Visibility.Visible : Visibility.Collapsed;
statusPanel.Margin = new Thickness(12, IsUiCompressMode ? 12 : 44, 12, 12);
UiCompressModeChanged?.Invoke(this, new EventArgs());
void RemoveFromGrid()
{
Expand Down
2 changes: 1 addition & 1 deletion SimpleFFmpegGUI.WPF/Pages/AddTaskPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<ColumnDefinition Width="8" />
<ColumnDefinition
Width="Auto"
MinWidth="300" />
MinWidth="320" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
Expand Down

0 comments on commit 9337b6a

Please sign in to comment.