mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 17:35:37 -04: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 )
|
for ( int row = 0; row < modl->rowCount( parent ); ++row )
|
||||||
{
|
{
|
||||||
QModelIndex index = modl->index( row, 0, parent );
|
QModelIndex index = modl->index( row, 0, parent );
|
||||||
|
list.append( index );
|
||||||
if ( modl->hasChildren( index ) )
|
if ( modl->hasChildren( index ) )
|
||||||
list.append( getIndexesToDraw( index ) );
|
list.append( getIndexesToDraw( index ) );
|
||||||
else
|
|
||||||
list.append( index );
|
|
||||||
}
|
}
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue