Changeset 8a9a41e in mainline for uspace/lib/ui/src/msgdialog.c


Ignore:
Timestamp:
2021-10-24T08:28:43Z (2 years ago)
Author:
GitHub <noreply@…>
Children:
f628215
Parents:
2ce943a (diff), cd981f2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Erik Kučák <35500848+Riko196@…> (2021-10-24 08:28:43)
git-committer:
GitHub <noreply@…> (2021-10-24 08:28:43)
Message:

Merge branch 'HelenOS:master' into master

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/src/msgdialog.c

    r2ce943a r8a9a41e  
    103103                wparams.rect.p0.x = 0;
    104104                wparams.rect.p0.y = 0;
    105                 wparams.rect.p1.x = 20;
     105                wparams.rect.p1.x = 40;
    106106                wparams.rect.p1.y = 7;
    107107        } else {
     
    177177                goto error;
    178178
     179        dialog->bok = bok;
    179180        bok = NULL;
    180181
     
    187188
    188189        dialog->window = window;
    189         dialog->bok = bok;
    190190        *rdialog = dialog;
    191191        return EOK;
    192192error:
     193        if (bok != NULL)
     194                ui_pbutton_destroy(bok);
    193195        if (label != NULL)
    194196                ui_label_destroy(label);
Note: See TracChangeset for help on using the changeset viewer.