Skip to content

Commit

Permalink
Groß- und Kleinschreibung der Buttons im View Mail erstellen geändert. (
Browse files Browse the repository at this point in the history
#137)

Die Breite des Dialogs zur Auswahl eines Empfängers angepasst.
  • Loading branch information
MSchmalzl authored Jan 31, 2024
1 parent 4ac732d commit 2ff3f1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/de/jost_net/JVerein/gui/control/MailControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ else if (getMail().getAnhang() == null)

public Button getMailSendButton()
{
Button b = new Button("speichern + senden", new Action()
Button b = new Button("Speichern und senden", new Action()
{

@Override
Expand Down Expand Up @@ -322,7 +322,7 @@ public void handleAction(Object context) throws ApplicationException

public Button getMailReSendButton()
{
Button b = new Button("speichern + erneut senden", new Action()
Button b = new Button("Speichern und erneut senden", new Action()
{

@Override
Expand Down Expand Up @@ -387,7 +387,7 @@ public void handleAction(Object context) throws ApplicationException

public Button getMailSpeichernButton()
{
Button b = new Button("speichern", new Action()
Button b = new Button("Speichern", new Action()
{

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public MailEmpfaengerAuswahlDialog(MailControl control, int position)
super(position);
this.control = control;
setTitle("Mail-Empfänger");
setSize(650, 450);
setSize(700, 450);
}

@Override
Expand Down

0 comments on commit 2ff3f1c

Please sign in to comment.