branch feature/8177 updated (39b64fd -> 10c294f)
This is an automated email from the git hooks/post-receive script. New change to branch feature/8177 in repository tutti. See https://gitlab.nuiton.org/codelutin/tutti.git from 39b64fd décoration pour le résumé (refs #8152) new 10c294f augmentation de la taille des messages de prélèvement + limite infinie au lieu de nulle (fixes #8152) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 10c294f4613855d7af9c19c57a26e3bee39e9a71 Author: Kevin Morin <morin@codelutin.com> Date: Tue Mar 29 16:56:35 2016 +0200 augmentation de la taille des messages de prélèvement + limite infinie au lieu de nulle (fixes #8152) Summary of changes: .../catches/species/frequency/IndividualObservationUICache.java | 3 ++- .../operation/catches/species/frequency/SpeciesFrequencyUI.jcss | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/8177 in repository tutti. See https://gitlab.nuiton.org/codelutin/tutti.git commit 10c294f4613855d7af9c19c57a26e3bee39e9a71 Author: Kevin Morin <morin@codelutin.com> Date: Tue Mar 29 16:56:35 2016 +0200 augmentation de la taille des messages de prélèvement + limite infinie au lieu de nulle (fixes #8152) --- .../catches/species/frequency/IndividualObservationUICache.java | 3 ++- .../operation/catches/species/frequency/SpeciesFrequencyUI.jcss | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/IndividualObservationUICache.java b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/IndividualObservationUICache.java index 872ae96..f9c49b5 100644 --- a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/IndividualObservationUICache.java +++ b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/IndividualObservationUICache.java @@ -183,7 +183,8 @@ public class IndividualObservationUICache implements Closeable { } String getLabelForSamplingNumber(int value, Integer max) { - return value + "(" + max + ")"; + Decorator<Integer> valueDecorator = ui.getHandler().getDecorator(Integer.class, DecoratorService.NULL_INFINITE); + return valueDecorator.toString(value) + "(" + valueDecorator.toString(max) + ")"; } }; diff --git a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/SpeciesFrequencyUI.jcss b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/SpeciesFrequencyUI.jcss index 2220245..d8a3244 100644 --- a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/SpeciesFrequencyUI.jcss +++ b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/frequency/SpeciesFrequencyUI.jcss @@ -400,13 +400,14 @@ ComputableDataEditor { foreground: {handler.getConfig().getColorHighlightInfoForeground()}; background: {handler.getConfig().getColorHighlightInfoBackground()}; horizontalAlignment: {SwingConstants.CENTER}; - font-size: 15; - border: {BorderFactory.createEmptyBorder(5, 10, 5, 10)}; + font-size: 16; + border: {BorderFactory.createEmptyBorder(3, 10, 5, 10)}; } #samplingResumeLabel { horizontalAlignment: {SwingConstants.CENTER}; - border: {BorderFactory.createEmptyBorder(5, 10, 5, 10)}; + font-size: 15; + border: {BorderFactory.createEmptyBorder(3, 10, 5, 10)}; } #dataFieldPanel { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm