Merge pull request #7 from Klagarge/debug-italique

solve label name
This commit is contained in:
Rémi Heredero 2022-05-19 09:17:57 +02:00 committed by GitHub
commit 2120ee1c5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -3,7 +3,7 @@ package BillGUI;
public class HesSoGarage { public class HesSoGarage {
public static void main(String[] args) { public static void main(String[] args) {
GarageManager garageManager = new GarageManager(); GarageManager garageManager = new GarageManager();
String name = "\033[3mGarage manager\033[0m\nPrestations"; //TODO résoudre en italique String name = "<html><body><i>Garage manager</i><br>Prestations</body></html>";
String logoFilePath = "src/logo_garage.png"; //TODO redimensionnement automatique String logoFilePath = "src/logo_garage.png"; //TODO redimensionnement automatique
new ManagerGui(name, logoFilePath, garageManager.getServices(), garageManager); //TODO affichage sans redimensionnement new ManagerGui(name, logoFilePath, garageManager.getServices(), garageManager); //TODO affichage sans redimensionnement
} }