Skip to content

Commit 67f879d

Browse files
committed
minor ui adjustments. version 1.13.0.5
1 parent 325f8fa commit 67f879d

File tree

18 files changed

+25
-1
lines changed

18 files changed

+25
-1
lines changed
-144 Bytes
Binary file not shown.

j-lawyer-client/src/com/jdimension/jlawyer/client/editors/addresses/QuickAddressSearchPanel.form

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@
126126
<SubComponents>
127127
<Component class="javax.swing.JLabel" name="jLabel1">
128128
<Properties>
129+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
130+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
131+
</Property>
129132
<Property name="text" type="java.lang.String" value="Suchanfrage:"/>
130133
</Properties>
131134
</Component>

j-lawyer-client/src/com/jdimension/jlawyer/client/editors/addresses/QuickAddressSearchPanel.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -833,6 +833,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
833833
});
834834
popupAddressActions.add(mnuDeleteSelectedAddresses);
835835

836+
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
836837
jLabel1.setText("Suchanfrage:");
837838

838839
txtSearchString.addKeyListener(new java.awt.event.KeyAdapter() {

j-lawyer-client/src/com/jdimension/jlawyer/client/editors/files/QuickArchiveFileSearchPanel.form

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@
149149
</Component>
150150
<Component class="javax.swing.JLabel" name="jLabel1">
151151
<Properties>
152+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
153+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
154+
</Property>
152155
<Property name="text" type="java.lang.String" value="Suchanfrage:"/>
153156
</Properties>
154157
</Component>

j-lawyer-client/src/com/jdimension/jlawyer/client/editors/files/QuickArchiveFileSearchPanel.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,7 @@ public void mousePressed(java.awt.event.MouseEvent evt) {
848848
}
849849
});
850850

851+
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
851852
jLabel1.setText("Suchanfrage:");
852853

853854
txtSearchString.addKeyListener(new java.awt.event.KeyAdapter() {

j-lawyer-client/src/com/jdimension/jlawyer/client/editors/search/DocumentSearchPanel.form

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@
7171
<SubComponents>
7272
<Component class="javax.swing.JLabel" name="jLabel1">
7373
<Properties>
74+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
75+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
76+
</Property>
7477
<Property name="text" type="java.lang.String" value="Suchanfrage:"/>
7578
</Properties>
7679
</Component>
@@ -148,6 +151,9 @@
148151
</Component>
149152
<Component class="javax.swing.JLabel" name="lblResultCount">
150153
<Properties>
154+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
155+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
156+
</Property>
151157
<Property name="text" type="java.lang.String" value="0 Ergebnisse"/>
152158
</Properties>
153159
</Component>

j-lawyer-client/src/com/jdimension/jlawyer/client/editors/search/DocumentSearchPanel.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,7 @@ private void initComponents() {
756756
cmbMaxDocs = new javax.swing.JComboBox();
757757
lblResultCount = new javax.swing.JLabel();
758758

759+
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
759760
jLabel1.setText("Suchanfrage:");
760761

761762
txtSearchString.addKeyListener(new java.awt.event.KeyAdapter() {
@@ -795,6 +796,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
795796
cmbMaxDocs.setSelectedIndex(1);
796797
cmbMaxDocs.setToolTipText("maximale Anzahl Dokumente im Ergebnis");
797798

799+
lblResultCount.setForeground(new java.awt.Color(255, 255, 255));
798800
lblResultCount.setText("0 Ergebnisse");
799801

800802
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);

j-lawyer-client/src/com/jdimension/jlawyer/client/massmail/MassMailPanel.form

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@
180180
</Component>
181181
<Component class="javax.swing.JLabel" name="jLabel1">
182182
<Properties>
183+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
184+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
185+
</Property>
183186
<Property name="text" type="java.lang.String" value="Serie:"/>
184187
</Properties>
185188
</Component>
@@ -206,6 +209,9 @@
206209
</Component>
207210
<Component class="javax.swing.JLabel" name="lblFolder">
208211
<Properties>
212+
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
213+
<Color blue="ff" green="ff" red="ff" type="rgb"/>
214+
</Property>
209215
<Property name="text" type="java.lang.String" value=" "/>
210216
</Properties>
211217
</Component>

j-lawyer-client/src/com/jdimension/jlawyer/client/massmail/MassMailPanel.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
817817
}
818818
});
819819

820+
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
820821
jLabel1.setText("Serie:");
821822

822823
cmdAddCampaign.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/edit_add.png"))); // NOI18N
@@ -834,6 +835,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
834835
}
835836
});
836837

838+
lblFolder.setForeground(new java.awt.Color(255, 255, 255));
837839
lblFolder.setText(" ");
838840

839841
cmdAddContacts.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons/vcard.png"))); // NOI18N

j-lawyer-client/src/com/jdimension/jlawyer/client/utils/VersionUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ public static String getPatchLevel() {
687687
}
688688

689689
public static String getBuild() {
690-
return "4";
690+
return "5";
691691
}
692692

693693
public static boolean isVersionGreater(String referenceVersion, String compareToVersion) {

0 commit comments

Comments
 (0)