We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UI/Toast中的
Toast::paintEvent(QPaintEvent *event)
使用QPainter paint(this);的同时再使用
QPainter paint(this);
paint.begin(this); paint.end();
会重复包含QPainter paint(this);,运行时会有异常输出QPainter::begin: Painter already active 可以尝试下删掉
QPainter::begin: Painter already active
The text was updated successfully, but these errors were encountered:
No branches or pull requests
UI/Toast中的
Toast::paintEvent(QPaintEvent *event)
使用
QPainter paint(this);
的同时再使用paint.begin(this); paint.end();
会重复包含
QPainter paint(this);
,运行时会有异常输出QPainter::begin: Painter already active
可以尝试下删掉
paint.begin(this); paint.end();
The text was updated successfully, but these errors were encountered: