Skip to content

Commit f2bc372

Browse files
committed
Simplify color scheme
1 parent 3314653 commit f2bc372

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NodePainter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ drawModelName(QPainter* painter,
179179
(geom.spacing() + geom.entryHeight()) / 3.0);
180180

181181
painter->setFont(f);
182-
painter->setPen(QColor(Qt::lightGray).lighter());
182+
painter->setPen(Qt::white);
183183
painter->drawText(position, name);
184184

185185
f.setBold(false);
@@ -212,7 +212,7 @@ drawEntryLabels(QPainter* painter,
212212
if (entries[i].expired())
213213
painter->setPen(Qt::darkGray);
214214
else
215-
painter->setPen(QColor(Qt::lightGray).lighter());
215+
painter->setPen(Qt::white);
216216

217217
QString s = model->dataType(portType, i).name;
218218

0 commit comments

Comments
 (0)