OSDN Git Service

fixed: 初期状態時にラジオボタンが選択されていない
authorhaya4 <hayashi.yuu@gmail.com>
Mon, 21 Oct 2019 20:20:30 +0000 (05:20 +0900)
committerhaya4 <hayashi.yuu@gmail.com>
Mon, 21 Oct 2019 20:20:30 +0000 (05:20 +0900)
src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java

index 45171ef..03c3e02 100644 (file)
@@ -86,7 +86,7 @@ public class ParameterPanelTime extends ParameterPanel {
      */
     public void addFileUpdate(String label, AppParameters params) {
         boolean selected = false;
-        if (params.getProperty(AppParameters.GPX_BASETIME).equals("FILE_UPDATE_TIME")) {
+        if (params.getProperty(AppParameters.GPX_BASETIME).equals("FILE_UPDATE")) {
             selected = true;
         }
         fupdateBase = new JRadioButton(label, selected);