diff --git a/src/modules/partition/gui/PartitionBarsView.cpp b/src/modules/partition/gui/PartitionBarsView.cpp index a0e27cd88..91e685d58 100644 --- a/src/modules/partition/gui/PartitionBarsView.cpp +++ b/src/modules/partition/gui/PartitionBarsView.cpp @@ -479,8 +479,8 @@ PartitionBarsView::computeItemsVector( const QModelIndex& parent ) const qreal adjustedTotal = total; for ( int row = 0; row < count; ++row ) { - if ( items[ row ].size < 0.01 * total ) // if this item is smaller than 5% of everything - { + if ( items[ row ].size < 0.01 * total ) // If this item is smaller than 1% of everything, + { // force its width to 1%. adjustedTotal -= items[ row ].size; items[ row ].size = qRound( 0.01 * total ); adjustedTotal += items[ row ].size;