Add missed ConnectionState member variable to operator==

This commit is contained in:
Ilya Fedin
2025-10-06 08:46:44 +00:00
committed by John Preston
parent 1a3eb0f209
commit 147439ad34

View File

@@ -206,6 +206,7 @@ void ConnectionState::Widget::ProxyIcon::paintEvent(QPaintEvent *e) {
bool ConnectionState::State::operator==(const State &other) const {
return (type == other.type)
&& (useProxy == other.useProxy)
&& (exposed == other.exposed)
&& (underCursor == other.underCursor)
&& (updateReady == other.updateReady)
&& (waitTillRetry == other.waitTillRetry);