From: haya4 Date: Mon, 21 Oct 2019 20:20:30 +0000 (+0900) Subject: fixed: 初期状態時にラジオボタンが選択されていない X-Git-Tag: v5.3.1~15 X-Git-Url: http://git.osdn.net/view?p=importpicture%2Fimportpicture.git;a=commitdiff_plain;h=58022dec4edeec0d43e5b1c6834d8fbdd7d9c2bc fixed: 初期状態時にラジオボタンが選択されていない --- diff --git a/src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java b/src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java index 45171ef..03c3e02 100644 --- a/src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java +++ b/src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java @@ -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);