Posts: 1,006
Threads: 330
Joined: Mar 2007
Hi Gintaras,
I often want to watch the threads as various functions run and I usually have to write a tiny ont script manually for this. It would be nice to have a stay on top or pin option.
Thanks, Stuart
Posts: 12,071
Threads: 140
Joined: Dec 2002
But it is always on top now...
There are two lists of threads. One is a child window in QM window. Other is always-on-top dialog, you can open it from QM tray icon menu.
Posts: 1,006
Threads: 330
Joined: Mar 2007
I am talking about the QM tray dialog. I just now realized it is default always-on-top. I think my problem is that I have various other QM functions (drop down browsers windows from dialogs, etc) which I am giving an ont status too as well and they are probably fighting!
Is there a way that QM related dialogs can override any other type of ont statements...without undoing the otherwise ont status of the other elements. ie. is there a way to manage as ont-1? Some sort of z-order maintenance?
(This is not top priority more just a question)
S
Posts: 12,071
Threads: 140
Joined: Dec 2002
To make a window on top of other always-on-top windows, need to periodically bring it to top.
Function
qm_threads_ontop
Trigger
!ca"QM - Threads" "#32770"
int hwnd=val(_command)
rep
,1
,if(!IsWindow(hwnd)) break
,Zorder hwnd 0 SWP_NOACTIVATE
Posts: 1,006
Threads: 330
Joined: Mar 2007