Fix segfault with Qt 6.2 (use hide() instead of close())
This commit is contained in:
parent
d7013a8e7f
commit
93ee94bac3
@ -148,7 +148,7 @@ void ExpressionTipLabel::hideTip() {
|
||||
if(!hideTimer.isActive()) hideTimer.start(300, this);
|
||||
}
|
||||
void ExpressionTipLabel::hideTipImmediately() {
|
||||
close();
|
||||
hide();
|
||||
}
|
||||
void ExpressionTipLabel::timerEvent(QTimerEvent *e) {
|
||||
if(e->timerId() == hideTimer.timerId() || e->timerId() == expireTimer.timerId()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user