[bugfix] move window to another monitor
This commit is contained in:
parent
2566212499
commit
6aded5e154
|
@ -273,12 +273,13 @@ MoveCursorToMonitor(direction) {
|
||||||
}
|
}
|
||||||
|
|
||||||
MoveWindowToMonitor(direction) {
|
MoveWindowToMonitor(direction) {
|
||||||
|
WinRestore, A
|
||||||
if (GetCursorNearestMonitor(direction, ml, mt, mr, mb)) {
|
if (GetCursorNearestMonitor(direction, ml, mt, mr, mb)) {
|
||||||
WinGetPos wx, wy, ww, wh, A
|
|
||||||
mw := mr - ml
|
mw := mr - ml
|
||||||
mh := mb - mt
|
mh := mb - mt
|
||||||
ww := mw * 0.8
|
LogDebug("move win to mon size: {1}, {2}, {3}, {4}, {5}, {6}", ml, mt, mr, mb, mw, mh)
|
||||||
wh := mh * 0.8
|
ww := mw * 0.5
|
||||||
|
wh := mh * 0.5
|
||||||
wx := ml + ww / 2
|
wx := ml + ww / 2
|
||||||
wy := mt + wh / 2
|
wy := mt + wh / 2
|
||||||
LogDebug("move win to mon: {1}, {2}, {3}, {4}", wx, wy, ww, wh)
|
LogDebug("move win to mon: {1}, {2}, {3}, {4}", wx, wy, ww, wh)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user