Skip to content

Commit

Permalink
Merge pull request #3882 from tig/v2_UICatalog-StatusBar
Browse files Browse the repository at this point in the history
Fixes issue with UICatalog statusbar not show/hiding
  • Loading branch information
tig authored Dec 5, 2024
2 parents 5367e7b + 617f1fd commit a9769e9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions UICatalog/UICatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,8 @@ public UICatalogTopLevel ()
{
if (_statusBar.NeedsLayout)
{
// throw new LayoutException ("DimFunc.Fn aborted because dependent View needs layout.");
throw new LayoutException ("DimFunc.Fn aborted because dependent View needs layout.");
//_statusBar.Layout ();
}
return _statusBar.Frame.Height;
})),
Expand Down Expand Up @@ -825,7 +826,8 @@ public UICatalogTopLevel ()
{
if (_statusBar.NeedsLayout)
{
// throw new LayoutException ("DimFunc.Fn aborted because dependent View needs layout.");
throw new LayoutException ("DimFunc.Fn aborted because dependent View needs layout.");
//_statusBar.Layout ();
}
return _statusBar.Frame.Height;
})),
Expand Down

0 comments on commit a9769e9

Please sign in to comment.