1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +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

@ -2939,8 +2939,9 @@ namespace IDE.ui
wantHeight = 0; wantHeight = 0;
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;