OSDN Git Service

[#32550] resize the text field at the TextSearchPanel
authorargius <argius.net@gmail.com>
Fri, 13 Dec 2013 23:51:07 +0000 (08:51 +0900)
committerargius <argius.net@gmail.com>
Fri, 13 Dec 2013 23:51:07 +0000 (08:51 +0900)
src/net/argius/stew/ui/window/TextSearchPanel.java

index 8623cea..5e23d96 100644 (file)
@@ -39,7 +39,7 @@ final class TextSearchPanel extends JPanel implements AnyActionListener {
     TextSearchPanel(JFrame frame) {
         // [Init Instances]
         this.targets = new ArrayList<TextSearch>();
-        this.text = new JTextField(16);
+        this.text = new JTextField(20);
         this.useRegexCheck = new JCheckBox(res.get("useregex"));
         this.ignoreCaseCheck = new JCheckBox(res.get("ignorecase"));
         setLayout(new FlowLayout(FlowLayout.LEFT, 1, 1));