diff --git a/IDE/src/ui/WatchPanel.bf b/IDE/src/ui/WatchPanel.bf index 7ad3ff57..2143f380 100644 --- a/IDE/src/ui/WatchPanel.bf +++ b/IDE/src/ui/WatchPanel.bf @@ -2939,8 +2939,9 @@ namespace IDE.ui wantHeight = 0; else wantHeight = watchListView.mFont.GetLineSpacing(); - - if ((mSelfHeight != wantHeight) && (!mFreezeHeight)) + + var dataItem = GetSubItem(1) as WatchListViewItem; + if ((mSelfHeight != wantHeight) && (!mFreezeHeight) && (dataItem.mCustomContentWidget == null)) { mSelfHeight = wantHeight; watchListView.mListSizeDirty = true;