mirror of
https://github.com/fanchenio/DawnLauncher.git
synced 2025-07-14 05:12:11 +08:00
修复在多屏幕情况下显示快速搜索窗口程序崩溃问题
This commit is contained in:
parent
2cdefb513a
commit
27a32c7eed
@ -129,8 +129,8 @@ function showQuickSearchWindow() {
|
|||||||
// 在鼠标所在的屏幕显示
|
// 在鼠标所在的屏幕显示
|
||||||
let workArea = currentDisplay.workArea;
|
let workArea = currentDisplay.workArea;
|
||||||
let bounds = quickSearchWindow.getBounds();
|
let bounds = quickSearchWindow.getBounds();
|
||||||
let x = workArea.x + workArea.width / 2 - bounds.width / 2;
|
let x = Math.round(workArea.x + workArea.width / 2 - bounds.width / 2);
|
||||||
let y = workArea.y + workArea.height / 2 - 44 / 2;
|
let y = Math.round(workArea.y + workArea.height / 2 - 44 / 2);
|
||||||
quickSearchWindow.setPosition(x, y);
|
quickSearchWindow.setPosition(x, y);
|
||||||
for (let i = 0; i < 10; i++) {
|
for (let i = 0; i < 10; i++) {
|
||||||
quickSearchWindow.setSize(global.setting.quickSearch.width, 44);
|
quickSearchWindow.setSize(global.setting.quickSearch.width, 44);
|
||||||
|
Loading…
Reference in New Issue
Block a user