mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 19:18:01 +02:00
Linux fixes, misc fixes
This commit is contained in:
parent
609dbfa256
commit
c97b074fee
12 changed files with 131 additions and 68 deletions
|
@ -424,6 +424,15 @@ namespace Beefy.widgets
|
|||
return mSubItems[columnIdx];
|
||||
}
|
||||
|
||||
public ListViewItem GetOrCreateSubItem(int columnIdx)
|
||||
{
|
||||
if (mColumnIdx == columnIdx)
|
||||
return this;
|
||||
if ((mSubItems != null) && (columnIdx < mSubItems.Count))
|
||||
return mSubItems[columnIdx];
|
||||
return CreateSubItem(columnIdx);
|
||||
}
|
||||
|
||||
public virtual void MakeParent()
|
||||
{
|
||||
if (mChildItems == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue