mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-04-03 21:25: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(){
|
||||
auto o = parent();
|
||||
while (nullptr != o) {
|
||||
window = (QQuickWindow*)o;
|
||||
do {
|
||||
window = qobject_cast<QQuickWindow *>(o);
|
||||
if (window) {
|
||||
break;
|
||||
}
|
||||
o = o->parent();
|
||||
}
|
||||
} while (nullptr != o);
|
||||
if(!window.isNull()){
|
||||
_stayTop = QQmlProperty(window,"stayTop");
|
||||
_screen = QQmlProperty(window,"screen");
|
||||
|
Loading…
x
Reference in New Issue
Block a user