OSDN Git Service

Ver0.13
authorMasayuki Satoh <miyabi.satoh@gmail.com>
Tue, 26 Aug 2014 12:32:31 +0000 (21:32 +0900)
committerMasayuki Satoh <miyabi.satoh@gmail.com>
Tue, 26 Aug 2014 12:32:31 +0000 (21:32 +0900)
ReadMe.txt
mainwindow.cpp

index d0a8cdf..668fce6 100644 (file)
@@ -98,7 +98,8 @@
   * テキストビューアについても、メニューまたはキーボードで文字の大きさを変更できるようにした。
   * テキストビューアについても、カーソル移動系アクションを有効にした。
   * 不具合修正
-    * 環境設定ダイアログで、「起動時のアップデート確認」の設定表示・変更ができていなかった。
+    * 環境設定ダイアログで、「起動時のアップデート確認」の設定表示・変更ができていなかったのを修正。
+    * アイテム移動時の確認・完了表示に関するオプションが無視されていたのを修正。
 
 #### 2014/08/26 Ver0.12
   * コンテキストメニューを実装。
index f2712c2..7bcbef7 100644 (file)
@@ -348,7 +348,7 @@ void MainWindow::moveItems()
     }\r
 \r
     QSettings settings;\r
-    if (settings.value(IniKey_ConfirmCopy).toBool()) {\r
+    if (settings.value(IniKey_ConfirmMove).toBool()) {\r
         if (QMessageBox::question(this, tr("確認"), tr("移動を実行しますか?"))\r
             != QMessageBox::Yes)\r
         {\r
@@ -372,11 +372,11 @@ void MainWindow::moveItems()
     OperationDialog opDlg(this);\r
     opDlg.setWindowTitle(tr("移動"));\r
     opDlg.setWorker(worker);\r
-    opDlg.setAutoClose(settings.value(IniKey_AutoCloseCopy).toBool());\r
+    opDlg.setAutoClose(settings.value(IniKey_AutoCloseMove).toBool());\r
 \r
     opDlg.exec();\r
 \r
-    settings.setValue(IniKey_AutoCloseCopy, opDlg.autoClose());\r
+    settings.setValue(IniKey_AutoCloseMove, opDlg.autoClose());\r
 \r
     // 念のため、リフレッシュ\r
     ui->folderView1->refresh();\r