mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-04-04 13:55:05 +08:00
fix bug #412
This commit is contained in:
parent
9361d7b2eb
commit
3dfca40680
@ -241,10 +241,13 @@ bool FluFramelessHelper::eventFilter(QObject *obj, QEvent *ev){
|
|||||||
|
|
||||||
void FluFramelessHelper::componentComplete(){
|
void FluFramelessHelper::componentComplete(){
|
||||||
auto o = parent();
|
auto o = parent();
|
||||||
while (nullptr != o) {
|
do {
|
||||||
window = (QQuickWindow*)o;
|
window = qobject_cast<QQuickWindow *>(o);
|
||||||
|
if (window) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
o = o->parent();
|
o = o->parent();
|
||||||
}
|
} while (nullptr != o);
|
||||||
if(!window.isNull()){
|
if(!window.isNull()){
|
||||||
_stayTop = QQmlProperty(window,"stayTop");
|
_stayTop = QQmlProperty(window,"stayTop");
|
||||||
_screen = QQmlProperty(window,"screen");
|
_screen = QQmlProperty(window,"screen");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user