Skip to content

Commit

Permalink
updated defaults (no address extraction, no calendar entry creation).…
Browse files Browse the repository at this point in the history
… issue #2693
  • Loading branch information
j-dimension committed Nov 24, 2024
1 parent aae7896 commit 65698fc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@
</Component>
<Component class="javax.swing.JCheckBox" name="chkCreateEvent">
<Properties>
<Property name="selected" type="boolean" value="true"/>
<Property name="text" type="java.lang.String" value="Kalendereintrag erstellen"/>
</Properties>
</Component>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,6 @@ private void initComponents() {
jLabel1.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(0, 0, 0), 1, true));
jLabel1.setOpaque(true);

chkCreateEvent.setSelected(true);
chkCreateEvent.setText("Kalendereintrag erstellen");

lblStatus.setFont(lblStatus.getFont().deriveFont(lblStatus.getFont().getStyle() | java.awt.Font.BOLD));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
<Property name="lineWrap" type="boolean" value="true"/>
<Property name="rows" type="int" value="5"/>
<Property name="wrapStyleWord" type="boolean" value="true"/>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
</Component>
</SubComponents>
Expand All @@ -115,6 +116,7 @@
<Column editable="true" title="Attributname" type="java.lang.String"/>
</Table>
</Property>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
</Component>
</SubComponents>
Expand All @@ -123,7 +125,6 @@
</Container>
<Component class="javax.swing.JCheckBox" name="chkGenerateAddress">
<Properties>
<Property name="selected" type="boolean" value="true"/>
<Property name="text" type="java.lang.String" value="Adresse aus Nachricht extrahieren"/>
</Properties>
<Events>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,7 @@ private void initComponents() {
taBody.setLineWrap(true);
taBody.setRows(5);
taBody.setWrapStyleWord(true);
taBody.setEnabled(false);
jScrollPane1.setViewportView(taBody);

jSplitPane1.setLeftComponent(jScrollPane1);
Expand All @@ -833,11 +834,11 @@ public Class getColumnClass(int columnIndex) {
return types [columnIndex];
}
});
tblAttributes.setEnabled(false);
jScrollPane2.setViewportView(tblAttributes);

jSplitPane1.setRightComponent(jScrollPane2);

chkGenerateAddress.setSelected(true);
chkGenerateAddress.setText("Adresse aus Nachricht extrahieren");
chkGenerateAddress.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
Expand Down

0 comments on commit 65698fc

Please sign in to comment.