mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
Don't skip extended partition.
This commit is contained in:
parent
f64d210496
commit
7fce08459b
1 changed files with 1 additions and 2 deletions
|
@ -128,10 +128,9 @@ PartitionLabelsView::getIndexesToDraw( const QModelIndex& parent ) const
|
|||
for ( int row = 0; row < modl->rowCount( parent ); ++row )
|
||||
{
|
||||
QModelIndex index = modl->index( row, 0, parent );
|
||||
list.append( index );
|
||||
if ( modl->hasChildren( index ) )
|
||||
list.append( getIndexesToDraw( index ) );
|
||||
else
|
||||
list.append( index );
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue