Actions
Bug #3485
open$input() not appearing again after dialog and adiirc minimize
Start date:
06/08/2017
Due date:
% Done:
0%
Estimated time:
Operative System:
All
Regression:
No
Description
Hello,
If you execute that code you are gonna see that if you try to restore the dialog in acttive or the adiirc the $input() that has been
executed before doesn't came in active as it should.
dialog testing {
title "testing dialog"
size -1 -1 233 108
option dbu disable
button "Close this window", 2, 61 91 117 16, ok default
}
ON *:DIALOG:testing:*:*: {
if ($devent == init) {
showadiirc -n
dialog -i $dname
.timer -ho 1 1000 !noop $!input(test message,yuidbk60,test input)
}
}
- Thanks!
Updated by Per Amundsen over 7 years ago
- Status changed from New to Assigned
- Operative System changed from Windows 10 to All
The is the way blocking dialogs works in .NET, I have on TODO to look into creating non-interactive dialogs that doesn't block the UI thread.
Actions