Skip to content
Snippets Groups Projects
Commit d28f235b authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by François Cartegnie
Browse files

qt: correct tooltip color inversion

parent fe9388b9
1 merge request!3003qt: correct tooltip color inversion
Pipeline #296944 passed with stage
in 13 minutes and 51 seconds
......@@ -421,8 +421,8 @@ void SystemPalette::makeLightPalette()
m_playerControlBarFg = QColor{"#333333"};
m_expandDelegate = Qt::white;
m_tooltipTextColor = Qt::white;
m_tooltipColor = Qt::black;
m_tooltipTextColor = Qt::black;
m_tooltipColor = Qt::white;
m_border = QColor{"#e0e0e0"};
m_buttonHover = lightGrey300;
......@@ -483,8 +483,8 @@ void SystemPalette::makeDarkPalette()
m_expandDelegate = Qt::black;
m_tooltipTextColor = Qt::black;
m_tooltipColor = Qt::white;
m_tooltipTextColor = Qt::white;
m_tooltipColor = Qt::black;
m_border = darkGrey800;
m_buttonHover = darkGrey800;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment