Changeset 06d0c81 in mainline for uspace/app/terminal/terminal.c


Ignore:
Timestamp:
2020-11-19T22:38:17Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
20667af
Parents:
2e0a2e7
Message:

Window placement

Needed to recreate the current 'desktop' and keep CI tests working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/terminal/terminal.c

    r2e0a2e7 r06d0c81  
    756756
    757757errno_t terminal_create(const char *display_spec, sysarg_t width,
    758     sysarg_t height, terminal_t **rterm)
     758    sysarg_t height, terminal_flags_t flags, terminal_t **rterm)
    759759{
    760760        terminal_t *term;
     
    811811        ui_wnd_params_init(&wparams);
    812812        wparams.caption = "Terminal";
     813        if ((flags & tf_topleft) != 0)
     814                wparams.placement = ui_wnd_place_top_left;
    813815
    814816        /*
Note: See TracChangeset for help on using the changeset viewer.