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:
parent
3253bb40ac
commit
b92b561867
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue