Hi there,
I have a signal handler member function of my main window that does some computation that takes a couple seconds. In the first line of the function definition, I used this->set_cursor("wait");
to indicate that some computation is ongoing, and the last line is this->set_cursor("");
to revert the cursor to default one.
This approach didn’t seem to work and I was wondering why.
Note: Also I have the idea of having three handlers, one for setting the cursor to wait, another for doing the computation and a final one for reverting back the cursor but this is probably not a good way of achieving this.