mirror of
https://github.com/elisspace/autopsy.git
synced 2026-09-06 02:24:30 +00:00
Merge pull request #770 from mrtizmo/filesearch_f
Filesearch module resolve hard coded font issue.
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
*/
|
||||
package org.sleuthkit.autopsy.filesearch;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import javax.swing.JCheckBox;
|
||||
@@ -113,7 +114,7 @@ class NameSearchPanel extends javax.swing.JPanel {
|
||||
}
|
||||
});
|
||||
|
||||
noteNameLabel.setFont(new java.awt.Font("Tahoma", 0, 10)); //NON-NLS
|
||||
noteNameLabel.setFont(new java.awt.Font(noteNameLabel.getFont().getName(), Font.PLAIN, 10));
|
||||
noteNameLabel.setText(org.openide.util.NbBundle.getMessage(NameSearchPanel.class, "NameSearchPanel.noteNameLabel.text")); // NOI18N
|
||||
|
||||
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
||||
|
||||
Reference in New Issue
Block a user