forked from github_mirror/framelesshelper
Fix typo in README.md
Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
parent
5fc425fc64
commit
6c6aada2ba
|
@ -80,9 +80,9 @@ WinNativeEventFilter::addFramelessWindow(&widget, &data);
|
||||||
WinNativeEventFilter::setWindowData(&widget, &data);
|
WinNativeEventFilter::setWindowData(&widget, &data);
|
||||||
// Or modify the window data of a specific window directly:
|
// Or modify the window data of a specific window directly:
|
||||||
const auto data = WinNativeEventFilter::windowData(&widget);
|
const auto data = WinNativeEventFilter::windowData(&widget);
|
||||||
data.borderWidth = 5;
|
data->borderWidth = 5;
|
||||||
data.borderHeight = 5;
|
data->borderHeight = 5;
|
||||||
data.titleBarHeight = 30;
|
data->titleBarHeight = 30;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Supported Platforms
|
## Supported Platforms
|
||||||
|
|
Loading…
Reference in New Issue