fileChooserDialog use keypress.
This commit is contained in:
parent
b261217cbe
commit
0d6335ebcd
1 changed files with 3 additions and 7 deletions
|
|
@ -3,7 +3,8 @@ package desktop
|
|||
import (
|
||||
"errors"
|
||||
"os/exec"
|
||||
"time"
|
||||
|
||||
"demodesk/neko/internal/desktop/xorg"
|
||||
)
|
||||
|
||||
// name of the window that is being controlled
|
||||
|
|
@ -76,13 +77,8 @@ func (manager *DesktopManagerCtx) CloseFileChooserDialog() {
|
|||
// custom press Alt + F4
|
||||
// because xdotool is failing to send proper Alt+F4
|
||||
|
||||
manager.ResetKeys()
|
||||
//nolint
|
||||
manager.KeyDown(65513) // Alt
|
||||
//nolint
|
||||
manager.KeyDown(65473) // F4
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
manager.ResetKeys()
|
||||
manager.KeyPress(xorg.XK_Alt_L, xorg.XK_F4)
|
||||
|
||||
mu.Unlock()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue