Skip to content

Commit

Permalink
Changements
Browse files Browse the repository at this point in the history
  • Loading branch information
Daudeuf committed Jan 19, 2024
1 parent 7261c85 commit e54d2d1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/fr/elpine/astre/metier/Astre.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ private void validation( boolean rollback )


// débug
if (lstAction.isEmpty()) logger.debug("Aucune actions à sauvegarder");
if (lstAction.isEmpty()) logger.debug(String.format("Aucune actions à %s", rollback ? "annuler" : "sauvegarder"));
else {
logger.debug("Listes des actions de sauvegarde :\n");
logger.debug(String.format("Listes des actions %s :\n", rollback ? "d'annulation" : "de sauvegarde"));
for (Action a : lstAction) logger.debug(String.valueOf(a));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>

<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="357.0" prefWidth="570.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.elpine.astre.ihm.stage.StageAjoutAffectation">
<columnConstraints>
Expand Down Expand Up @@ -36,7 +37,10 @@
</FlowPane>
<FlowPane alignment="CENTER_RIGHT" prefHeight="200.0" prefWidth="200.0" GridPane.rowIndex="1">
<children>
<Label text="Commentaire : " />
<Label text="Commentaire : ">
<font>
<Font name="System Italic" size="12.0" />
</font></Label>
</children>
</FlowPane>
<FlowPane alignment="CENTER" prefHeight="200.0" prefWidth="200.0" GridPane.columnIndex="1" GridPane.rowIndex="1">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>

<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="350.0" prefWidth="450.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fr.elpine.astre.ihm.stage.StageAjoutIntervenant">
<bottom>
Expand Down Expand Up @@ -67,6 +68,9 @@
<FlowPane.margin>
<Insets />
</FlowPane.margin>
<font>
<Font name="System Italic" size="12.0" />
</font>
</Label>
<TextField fx:id="txtEmail" prefWidth="200.0">
<FlowPane.margin>
Expand Down

0 comments on commit e54d2d1

Please sign in to comment.