From: yukihane Date: Mon, 29 Aug 2011 15:17:03 +0000 (+0900) Subject: fixes #26153 コメントディレクトリ設定誤り修正 X-Git-Tag: test20110903_ver2.a.0~108 X-Git-Url: http://git.sourceforge.jp/view?p=coroid%2Finqubus.git;a=commitdiff_plain;h=6434cfa09b48b0680f8540bad66daff6cd2cf697;ds=sidebyside fixes #26153 コメントディレクトリ設定誤り修正 --- diff --git a/frontend/src/yukihane/inqubus/gui/MainFrame.java b/frontend/src/yukihane/inqubus/gui/MainFrame.java index d1c78e1..77dbb80 100644 --- a/frontend/src/yukihane/inqubus/gui/MainFrame.java +++ b/frontend/src/yukihane/inqubus/gui/MainFrame.java @@ -881,15 +881,15 @@ public class MainFrame extends JFrame { private InqubusCommentProfile() { final Config p = Config.INSTANCE; - this.download = !cbVideoLocal.isSelected(); + this.download = !cbCommentLocal.isSelected(); if (this.download) { - this.dir = new File(p.getVideoDir()); - this.fileName = fldVideo.getText(); + this.dir = new File(p.getCommentDir()); + this.fileName = fldComment.getText(); this.localFile = null; } else { this.dir = null; this.fileName = null; - this.localFile = new File(fldVideo.getText()); + this.localFile = new File(fldComment.getText()); } if(cbBackLog.isSelected()) {