Skip to content

Commit

Permalink
Fix Margin Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 authored May 4, 2022
1 parent 25e49f8 commit d824635
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private void InitializeSuggestionControl()
SuggestionControl.VerticalScrollBarVisibility = ScrollViewer.GetVerticalScrollBarVisibility(this);
SuggestionControl.VerticalScrollMode = ScrollViewer.GetVerticalScrollMode(this);
SuggestionControl.ZoomMode = ZoomMode.Disabled;
SuggestionControl.Margin = new Thickness(0, 0, 0, 0);
SuggestionControl.Margin = new Thickness(0, -1, 0, 0);

if (SuggestionForeground is null && SuggestionForegroundDefaultBrush is not null)
{
Expand Down

0 comments on commit d824635

Please sign in to comment.