Format on save

This commit is contained in:
2026-01-13 14:12:00 -07:00
parent 3ed7c1b412
commit e93cb69c55
4 changed files with 8 additions and 7 deletions

View File

@@ -20,9 +20,8 @@ int main(int argc, char *argv[])
layout->addWidget(navBar);
layout->addStretch();
QObject::connect(navBar, &NavBar::addressEntered, [](const QString &text) {
qDebug() << "navigate to:" << text;
});
QObject::connect(navBar, &NavBar::addressEntered, [](const QString &text)
{ qDebug() << "navigate to:" << text; });
window.show();
return app.exec();