Changes in uspace/app/vterm/vterm.c [3e6a98c5:10cb47e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vterm/vterm.c
r3e6a98c5 r10cb47e 49 49 } 50 50 51 window_t *main_window = window_open(argv[1], true, true, "vterm", 0, 0); 51 window_t *main_window = window_open(argv[1], NULL, 52 WINDOW_MAIN | WINDOW_DECORATED, "vterm"); 52 53 if (!main_window) { 53 54 printf("%s: Cannot open main window.\n", NAME); … … 55 56 } 56 57 57 window_resize(main_window, 650, 510);58 window_resize(main_window, 0, 0, 648, 508, WINDOW_PLACEMENT_ANY); 58 59 terminal_t *terminal_widget = 59 create_terminal(window_root(main_window), 640, 480);60 create_terminal(window_root(main_window), NULL, 640, 480); 60 61 if (!terminal_widget) { 61 62 window_close(main_window);
Note:
See TracChangeset
for help on using the changeset viewer.