This commit is contained in:
Your Name
2024-05-10 00:45:37 -05:00
parent f50b466395
commit 05aab16504
2 changed files with 5 additions and 4 deletions

View File

@@ -57,9 +57,9 @@ int main(int argc, char *argv[]) {
layout->setSpacing(0);
layout->setContentsMargins(0, 0, 0, 0);
QString url = args.first();
// QString url = args.first();
QWebEngineView *web_view = new QWebEngineView();
web_view->load(QUrl(url));
web_view->load(QUrl("http://www.fark.com/"));
layout->addWidget(web_view);
return app.exec();