Update changelog to 5.15.8+dfsg-ok2.4

This commit is contained in:
liuyapeng 2024-01-04 15:15:25 +08:00 committed by openkylin-cibot
parent cd4ece0089
commit 447b4b3c49
3 changed files with 46 additions and 0 deletions

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
qtbase-opensource-src (5.15.8+dfsg-ok2.4) yangtze; urgency=medium
* BUG号
#I79FD0【文件管理器】【wayland】侧边栏悬停显示位置不正确
* 需求号:无
* 其他更改:
-- liuyapeng <liuyapeng@kylinos.cn> Thu, 04 Jan 2024 14:55:16 +0800
qtbase-opensource-src (5.15.8+dfsg-ok2.1) yangtze; urgency=medium
* BUG号

View File

@ -0,0 +1,36 @@
From: liuyapeng <liuyapeng@kylinos.cn>
Date: Thu, 4 Jan 2024 15:15:25 +0800
Subject: Update changelog to 5.15.8+dfsg-ok2.4
---
src/widgets/kernel/qtooltip.cpp | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/src/widgets/kernel/qtooltip.cpp b/src/widgets/kernel/qtooltip.cpp
index add2a44..84054d4 100644
--- a/src/widgets/kernel/qtooltip.cpp
+++ b/src/widgets/kernel/qtooltip.cpp
@@ -508,14 +508,15 @@ void QToolTip::showText(const QPoint &pos, const QString &text, QWidget *w, cons
else if (!QTipLabel::instance->fadingOut){
// If the tip has changed, reuse the one
// that is showing (removes flickering)
- QPoint localPos = pos;
- if (w)
- localPos = w->mapFromGlobal(pos);
- if (QTipLabel::instance->tipChanged(localPos, text, w)){
- QTipLabel::instance->reuseTip(text, msecDisplayTime, pos);
- QTipLabel::instance->setTipRect(w, rect);
- QTipLabel::instance->placeTip(pos, w);
- }
+ // QPoint localPos = pos;
+ // if (w)
+ // localPos = w->mapFromGlobal(pos);
+ // if (QTipLabel::instance->tipChanged(localPos, text, w)){
+ // QTipLabel::instance->reuseTip(text, msecDisplayTime, pos);
+ // QTipLabel::instance->setTipRect(w, rect);
+ // QTipLabel::instance->placeTip(pos, w);
+ // }
+ QTipLabel::instance->hideTip();
return;
}
}

View File

@ -34,3 +34,4 @@ revert_startBlocking_removal.diff
0034-update-debian-changelog.patch
0035-update-debian-changelog.patch
0036-update-debian-changelog-to-5.15.8-dfsg-ok2.1.patch
0037-Update-changelog-to-5.15.8-dfsg-ok2.4.patch