diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-07 13:32:53 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-07 13:32:53 +0200 |
commit | e9b29fb71df2096342b4560e56491212e6137b00 (patch) | |
tree | 602d5817d4ba3d6ab86ca6a5ead969c7d00e62f7 /src/ui/widget.c | |
parent | a6eddbadc94f678cab96dc99a438d08ff9081502 (diff) |
Multithreading issues
It was possible that the window was accessed from a background request
`postCommand` before the window was created. The CA file/path from
preferences must be set before TlsRequest is used.
Diffstat (limited to 'src/ui/widget.c')
-rw-r--r-- | src/ui/widget.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/widget.c b/src/ui/widget.c index dca07db2..011f63d7 100644 --- a/src/ui/widget.c +++ b/src/ui/widget.c | |||
@@ -1142,7 +1142,8 @@ static void printTree_Widget_(const iWidget *d, int indent) { | |||
1142 | cstr_String(text_LabelWidget((const iLabelWidget *) d)), | 1142 | cstr_String(text_LabelWidget((const iLabelWidget *) d)), |
1143 | cstr_String(command_LabelWidget((const iLabelWidget *) d))); | 1143 | cstr_String(command_LabelWidget((const iLabelWidget *) d))); |
1144 | } | 1144 | } |
1145 | printf("size:%dx%d flags:%08llx\n", d->rect.size.x, d->rect.size.y, d->flags); | 1145 | printf("size:%dx%d flags:%08llx\n", d->rect.size.x, d->rect.size.y, |
1146 | (long long unsigned int) d->flags); | ||
1146 | iConstForEach(ObjectList, i, d->children) { | 1147 | iConstForEach(ObjectList, i, d->children) { |
1147 | printTree_Widget_(i.object, indent + 1); | 1148 | printTree_Widget_(i.object, indent + 1); |
1148 | } | 1149 | } |