Skip to content

Commit

Permalink
added warning if there is no recepient selected
Browse files Browse the repository at this point in the history
  • Loading branch information
iradraconis committed Oct 7, 2024
1 parent 569c033 commit 3f98074
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2659,6 +2659,9 @@ private void cmdOpenTbActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIR

if (!to.isEmpty()) {
composeCommand.append("to='").append(to).append("'");
} else {
JOptionPane.showMessageDialog(this, "Empfänger ist erforderlich.");
return;
}

if (!cc.isEmpty()) {
Expand Down

0 comments on commit 3f98074

Please sign in to comment.