Skip to content

Commit

Permalink
More cheap constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenDB committed Sep 26, 2022
1 parent d380ece commit 9e31d71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DeveloperTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ class DownloadableImage : public QAbstractButton
}
else if (underMouse())
{
p.fillRect(rect(), QBrush{QColor{"#77444444"}});
p.setBrush(QBrush{QColor{"#e7e9e9e9"}});
p.fillRect(rect(), QBrush{QColor{0x44, 0x44, 0x44, 0x77}});
p.setBrush(QBrush{QColor{0xe9, 0xe9, 0xe9, 0xe7}});
}
else
return;
Expand Down

0 comments on commit 9e31d71

Please sign in to comment.