change resolution

This commit is contained in:
florian 2025-06-03 21:15:16 +02:00
parent abec938590
commit 1a76d817d6

View File

@ -5,7 +5,7 @@ int main(int argc, char *argv[]) {
QApplication app(argc, argv);
StockManager w;
w.setGeometry(0, 0, 1024, 600); // position en haut à gauche, taille 1024x600
w.setGeometry(0, 0, 1280, 720); // position en haut à gauche, taille 1024x600
w.setWindowFlags(Qt::FramelessWindowHint); // pas de barre de fenêtre
w.setFixedSize(1024, 600); // taille non redimensionnable
w.show();