From fd405bd9fdf5da21376f00e2bce6ca00421679a5 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Tue, 13 Jan 2026 14:20:44 -0700 Subject: [PATCH] Forgot to set window title --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 76403f3..8a52c65 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,6 +10,7 @@ int main(int argc, char *argv[]) QApplication app(argc, argv); QWidget window; + window.setWindowTitle("Crab Crawler"); window.resize(800, 500); auto *layout = new QVBoxLayout(&window);