mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-10-31 08:09:33 +08:00
update
This commit is contained in:
parent
f04bc2951f
commit
d37cd00322
@ -30,7 +30,7 @@ static inline bool isCompositionEnabled(){
|
|||||||
}
|
}
|
||||||
return composition_enabled;
|
return composition_enabled;
|
||||||
}
|
}
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@ -83,15 +83,14 @@ bool FramelessEventFilter::nativeEventFilter(const QByteArray &eventType, void *
|
|||||||
int offsetSize = 0;
|
int offsetSize = 0;
|
||||||
bool isMaximum = IsZoomed(hwnd);
|
bool isMaximum = IsZoomed(hwnd);
|
||||||
offsetXY = QPoint(abs(clientRect->left - originalLeft),abs(clientRect->top - originalTop));
|
offsetXY = QPoint(abs(clientRect->left - originalLeft),abs(clientRect->top - originalTop));
|
||||||
if(isCompositionEnabled()){
|
if(isMaximum){
|
||||||
if(isMaximum){
|
_helper->setOriginalPos(QPoint(originalLeft,originalTop));
|
||||||
_helper->setOriginalPos(QPoint(originalLeft,originalTop));
|
offsetSize = 0;
|
||||||
offsetSize = 0;
|
|
||||||
}else{
|
|
||||||
_helper->setOriginalPos({});
|
|
||||||
offsetSize = 1;
|
|
||||||
}
|
|
||||||
}else{
|
}else{
|
||||||
|
_helper->setOriginalPos({});
|
||||||
|
offsetSize = 1;
|
||||||
|
}
|
||||||
|
if(!isCompositionEnabled()){
|
||||||
offsetSize = 0;
|
offsetSize = 0;
|
||||||
}
|
}
|
||||||
clientRect->top = originalTop+offsetSize;
|
clientRect->top = originalTop+offsetSize;
|
||||||
|
Loading…
Reference in New Issue
Block a user