Skip to content

Commit

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

This reverts commit 83c8f83.
  • Loading branch information
carlos-zamora committed Mar 12, 2020
1 parent 04f393c commit 9343137
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/cascadia/WindowsTerminal/NonClientIslandWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@ 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 9343137

Please sign in to comment.