Label within class
I can change the cursor icon from the Qt ui dropdown list.
I'm trying to add my own cursor a "circumpunct"
This is what I got:
Not sure where to place the code?
& is the code correct?
Thanks
Printable View
Are you trying to change the cursor for:
You are using a relative file path so this code will only work if the BMP file is found in the current working directory of the process.Code:
// the entire program: ... // or just the one widget: widget->setCursor(customCursor);
Thanks, Works Like a dream