| 161 | } |
| 162 | |
| 163 | QColor SubToolbarToggle::backgroundColor() const |
| 164 | { |
| 165 | if (m_checked) { |
| 166 | return m_darkMode ? QColor(70, 130, 180) : QColor(100, 149, 237); |
| 167 | } else { |
| 168 | return m_darkMode ? Qt::black : Qt::white; |
| 169 | } |
| 170 | } |
| 171 |
nothing calls this directly
no outgoing calls
no test coverage detected