Fix date column color after update the date
This commit is contained in:
@@ -556,6 +556,12 @@ void MainWindow::updateTaskRow(QTreeWidgetItem *item, Task t)
|
||||
fgColor.setStyle(Qt::BrushStyle::SolidPattern);
|
||||
item->setForeground(3, fgColor);
|
||||
}
|
||||
else
|
||||
{
|
||||
QBrush fgColor = item->foreground(3);
|
||||
fgColor.setStyle(Qt::BrushStyle::NoBrush);
|
||||
item->setForeground(3, fgColor);
|
||||
}
|
||||
|
||||
if (!t.getStatusUUID().isEmpty())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user