Skip to content

Commit 65ff188

Browse files
committed
Fix release window width issue
1 parent c477bc5 commit 65ff188

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Flow.Launcher/ReleaseNotesWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203

204204
<!-- This Grid is for display progress ring and refresh button. -->
205205
<!-- And it is also for changing the size of the MarkdownViewer. -->
206-
<!-- Because VerticalAlignment="Stretch" can cause size issue with MarkdownScrollViewer. -->
206+
<!-- Because VerticalAlignment="Stretch" can cause height issue with MarkdownScrollViewer. -->
207207
<Grid
208208
Grid.Row="2"
209209
Grid.Column="0"

Flow.Launcher/ReleaseNotesWindow.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ private async void RefreshMarkdownViewer()
147147
private void Grid_SizeChanged(object sender, SizeChangedEventArgs e)
148148
{
149149
MarkdownScrollViewer.Height = e.NewSize.Height;
150-
MarkdownScrollViewer.Width = e.NewSize.Width;
151150
}
152151

153152
private void MarkdownViewer_MouseWheel(object sender, MouseWheelEventArgs e)

0 commit comments

Comments
 (0)