175 | @@ -176,6 +176,9 @@
176 | // Clicking on "Sign Message" in the receive coins page sends you to the sign message tab
177 | connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString)));
178 |
179 | + // Install global event filter to be able to catch status tip events (QEvent::StatusTip)
180 | + qApp->installEventFilter(this);
@laanwj Shouldn't this be this instead of qApp? qApp is the QCoreApplication->Instance(), but we just need this filter for the QMainWindow (which is the object with the statusbar), which is our BitcoinGUI object.
You could try. It's good to make event listeners as local as possible (a global event listener will be called for all events throughout the application, which can impact performance), but I don't know if it would work.
Compiles and works just fine, I'll update with this change!