I've noticed that this line:
var result = DOpus.Dlg.Request("There are items in the Stack.\nAre you sure you want to exit?", "Exit|Cancel", "Confirm", dlg);
results in a nice compact dialog :
but if I want a blank line between the two text lines:
var result = DOpus.Dlg.Request("There are items in the Stack.\n\nAre you sure you want to exit?", "Exit|Cancel", "Confirm", dlg);
(Note the duplicated \n\n).
The dialog seems to insert a blank line that's much longer than necessary, resulting in this:
Bug or by design ?
Thanks.