Skip to content

Commit

Permalink
chore: 💄 Make the partition label color gray from black to improve re…
Browse files Browse the repository at this point in the history
…adability
  • Loading branch information
pvshvp-oss committed Aug 3, 2024
1 parent 1de731d commit 6c3a4d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/partition/gui/PartitionLabelsView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ PartitionLabelsView::drawLabel( QPainter* painter,
const QPoint& pos,
bool selected )
{
painter->setPen( Qt::black );
painter->setPen( Qt::gray );
int vertOffset = 0;
int width = 0;
for ( const QString& textLine : text )
Expand All @@ -382,7 +382,7 @@ PartitionLabelsView::drawLabel( QPainter* painter,
drawSelectionSquare( painter, partitionSquareRect.adjusted( 2, 2, -2, -2 ), color );
}

painter->setPen( Qt::black );
painter->setPen( Qt::gray );
}

QModelIndex
Expand Down

0 comments on commit 6c3a4d6

Please sign in to comment.