Skip to content

Commit

Permalink
Revert "Update the dragbar when the titlebar content size changes (#4845
Browse files Browse the repository at this point in the history
)"

This reverts commit 62e424f.
  • Loading branch information
carlos-zamora committed Mar 11, 2020
1 parent 352f0ef commit 83c8f83
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/cascadia/WindowsTerminal/NonClientIslandWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,6 @@ void NonClientIslandWindow::SetContent(winrt::Windows::UI::Xaml::UIElement conte
void NonClientIslandWindow::SetTitlebarContent(winrt::Windows::UI::Xaml::UIElement content)
{
_titlebar.Content(content);

// GH#4288 - add a SizeChanged handler to this content. It's possible that
// this element's size will change after the dragbar's. When that happens,
// the drag bar won't send another SizeChanged event, because the dragbar's
// _size_ didn't change, only it's position.
const auto fwe = content.try_as<winrt::Windows::UI::Xaml::FrameworkElement>();
if (fwe)
{
fwe.SizeChanged({ this, &NonClientIslandWindow::_OnDragBarSizeChanged });
}
}

// Method Description:
Expand Down

0 comments on commit 83c8f83

Please sign in to comment.