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