Changes in uspace/app/vterm/vterm.c [2c7fdaa:10cb47e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vterm/vterm.c
r2c7fdaa r10cb47e 49 49 } 50 50 51 window_t *main_window = window_open(argv[1], 51 window_t *main_window = window_open(argv[1], NULL, 52 52 WINDOW_MAIN | WINDOW_DECORATED, "vterm"); 53 53 if (!main_window) { … … 58 58 window_resize(main_window, 0, 0, 648, 508, WINDOW_PLACEMENT_ANY); 59 59 terminal_t *terminal_widget = 60 create_terminal(window_root(main_window), 640, 480);60 create_terminal(window_root(main_window), NULL, 640, 480); 61 61 if (!terminal_widget) { 62 62 window_close(main_window);
Note:
See TracChangeset
for help on using the changeset viewer.