OSDN Git Service

FUNCTION:アウトプットフォルダの指定が可能になった。
authorhayashi yuu <hayashi.yuu@gmail.com>
Mon, 10 Aug 2015 10:39:24 +0000 (19:39 +0900)
committerhayashi yuu <hayashi.yuu@gmail.com>
Mon, 10 Aug 2015 10:39:24 +0000 (19:39 +0900)
importPicture/src/osm/jp/gpx/matchtime/gui/ParameterPanel.java

index 39bdda7..5e4c597 100644 (file)
@@ -1,4 +1,5 @@
 package osm.jp.gpx.matchtime.gui;
+import java.awt.Dimension;
 import java.awt.LayoutManager;
 
 import javax.swing.BoxLayout;
@@ -22,6 +23,7 @@ public class ParameterPanel extends JPanel {
                argField = new JTextField(text);
                
         this.setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
+        this.setMaximumSize(new Dimension(1920, 40));
         this.add(argLabel);
         this.add(argField);
        }