Test full screen

This commit is contained in:
2024-02-01 15:48:45 +01:00
parent e478dc3f2a
commit fba8b13ea5

View File

@@ -20,10 +20,12 @@ int main(int argc, char* argv[]) {
MainWindow::connect(main, &MainWindow::moveRobot, [=](int x, int y, int theta)
{
qInfo() << "move" << x << y << theta;
qInfo() << "move" << x << y << theta;
});
main->show();
//main->show();
main.showFullScreen();
return QApplication::exec();
}