mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-25 16:38:21 -04:00
Use proper color for new partition in PartitionSplitterWidget.
This commit is contained in:
parent
ae1fa0e48b
commit
96c840e878
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ PartitionSplitterWidget::setSplitPartition( const QString& path,
|
|||
if ( m_items[ i ].itemPath == itemToResize->itemPath )
|
||||
{
|
||||
m_items.insert( i+1,
|
||||
{ "", QColor( "#d667b7" ), false, newSize, {} } );
|
||||
{ "", QColor( "#c0392b" ), false, newSize, {} } );
|
||||
m_itemToResizeNext = &( m_items[ i+1 ] );
|
||||
break;
|
||||
}
|
||||
|
@ -113,7 +113,7 @@ PartitionSplitterWidget::setSplitPartition( const QString& path,
|
|||
if ( m_items[ i ].children[ j ].itemPath == itemToResize->itemPath )
|
||||
{
|
||||
m_items[ i ].children.insert( j+1,
|
||||
{ "", QColor( "#d667b7" ), false, newSize, {} } );
|
||||
{ "", QColor( "#c0392b" ), false, newSize, {} } );
|
||||
m_itemToResizeNext = &( m_items[ i ].children[ j+1 ] );
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue