mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fixed sizing of embedded "String" view in watch panel
This commit is contained in:
parent
3253bb40ac
commit
b92b561867
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue