소스 검색

Terminal: Set original window title to "Terminal"

Don't rely on the shell setting the window title using escape sequences.
Andreas Kling 6 년 전
부모
커밋
f196e2fcda
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Applications/Terminal/main.cpp

+ 1 - 0
Applications/Terminal/main.cpp

@@ -89,6 +89,7 @@ int main(int argc, char** argv)
     make_shell(ptm_fd);
 
     auto* window = new GWindow;
+    window->set_title("Terminal");
     window->set_background_color(Color::Black);
     window->set_double_buffering_enabled(false);
     window->set_should_exit_event_loop_on_close(true);