This commit is contained in:
gac-x03da
2020-06-09 10:15:28 +02:00
parent 23dcc59765
commit f574a21648
6 changed files with 13 additions and 12 deletions

View File

@@ -43,7 +43,7 @@ public class Experiment extends Panel {
textPGroup.setText(getContext().getSetting("pgroup") == null ? "" : getContext().getSetting("pgroup"));
textProposal.setText(getContext().getSetting("proposal") == null ? "" : getContext().getSetting("proposal"));
textProposer.setText(getContext().getSetting("proposer") == null ? "" : getContext().getSetting("proposer"));
textSamples.setText(getContext().getSetting("samples") == null ? "" : getContext().getSetting("samples"));
textSamples.setText(getContext().getSetting("sample") == null ? "" : getContext().getSetting("sample"));
textAuthors.setText(getContext().getSetting("authors") == null ? "" : getContext().getSetting("authors").replace("|", "\n"));
textPrefix.setText(getContext().getSetting("prefix") == null ? "" : getContext().getSetting("prefix"));
} catch (Exception ex) {
@@ -65,7 +65,7 @@ public class Experiment extends Panel {
getContext().setSetting("pgroup", pgroup);
getContext().setSetting("proposal", proposal);
getContext().setSetting("proposer", proposer);
getContext().setSetting("samples", samples);
getContext().setSetting("sample", samples);
getContext().setSetting("authors", authors);
getContext().setSetting("prefix", prefix);