fincs/SciTE4AutoHotkey

ActiveWindowInfo.ahk - Specifies tray icon when #NoTrayIcon is enabled?

joedf opened this issue · 2 comments

Why specify the tray icon, if #NoTrayIcon is specified?

File: "ActiveWindowInfo.ahk"

#NoTrayIcon
#SingleInstance Ignore
SetWorkingDir, %A_ScriptDir%
SetBatchLines, -1
CoordMode, Pixel, Screen
IfExist, ..\toolicon.icl ; Seems useful enough to support standalone operation.
Menu, Tray, Icon, ..\toolicon.icl, 9

Code in question : Permalink

Not a bug. This is used to change the window icon of Guis when launched from SciTE4AutoHotkey (it is shipped as an uncompiled script and otherwise it would have the standard green H icon).

ahh, ok. simply curious.