Skip to content

Commit

Permalink
some more lib fixes #266
Browse files Browse the repository at this point in the history
  • Loading branch information
ewerybody committed Apr 26, 2024
1 parent 1c0995c commit e2b7364
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/Autohotkey/lib/a2tip.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ _a2tip_off() {
; _a2_tip_id :=
; ToolTip()
; _a2tip_off
WinClose "ahk_id " _a2_tip_id
SetTimer , 0
if WinExist("ahk_id " . _a2_tip_id)
WinClose("ahk_id " . _a2_tip_id)
}

; a2tip_add(msg, timeout := "") {
Expand Down
2 changes: 1 addition & 1 deletion lib/Autohotkey/lib/processes.ahk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

processes_list_ids(process_name="") {
processes_list_ids(process_name:="") {
; Gather list of PIDs from all running processes via COM.
; https://www.autohotkey.com/docs/commands/Process.htm#ListCom
; These COM objects have a multitude of interesting member variables:
Expand Down
2 changes: 2 additions & 0 deletions lib/Autohotkey/lib/window.ahk
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#include <screen>

window_is_resizable(win_id:="") {
if !win_id
win_id := WinExist("A")
Expand Down

0 comments on commit e2b7364

Please sign in to comment.