1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Fixed sizing of embedded "String" view in watch panel

This commit is contained in:
Brian Fiete 2025-02-03 11:44:44 -08:00
parent 3253bb40ac
commit b92b561867

View file

@ -2940,7 +2940,8 @@ namespace IDE.ui
else else
wantHeight = watchListView.mFont.GetLineSpacing(); wantHeight = watchListView.mFont.GetLineSpacing();
if ((mSelfHeight != wantHeight) && (!mFreezeHeight)) var dataItem = GetSubItem(1) as WatchListViewItem;
if ((mSelfHeight != wantHeight) && (!mFreezeHeight) && (dataItem.mCustomContentWidget == null))
{ {
mSelfHeight = wantHeight; mSelfHeight = wantHeight;
watchListView.mListSizeDirty = true; watchListView.mListSizeDirty = true;