This commit is contained in:
Your Name
2024-05-10 00:41:51 -05:00
parent 51fc6d4de8
commit f50b466395
2 changed files with 3 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ int main(int argc, char *argv[]) {
QString url = args.first();
QWebEngineView *web_view = new QWebEngineView();
web_view->load(QUrl(url));
center_layout->addWidget(web_view);
layout->addWidget(web_view);
return app.exec();
}