Skip to content

Commit

Permalink
reaper.exe の指定をテキストボックスで直接行った場合に反映されない問題を修正した
Browse files Browse the repository at this point in the history
  • Loading branch information
chiepomme committed Apr 20, 2014
1 parent 8ad9802 commit 9ca7dd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/src/View/MainView.cs
Expand Up @@ -38,7 +38,6 @@ private void BrowseReaperButton_Click(object sender, System.EventArgs e)
if (!string.IsNullOrEmpty(path) && File.Exists(path))
{
TargetReaperBox.Text = path;
Patcher.ReaperPath = path;
}
}

Expand All @@ -65,6 +64,8 @@ private async void ExecuteButton_Click(object sender, System.EventArgs e)
ExecuteButton.Enabled = false;
SettingPanel.Enabled = false;

Patcher.ReaperPath = TargetReaperBox.Text;

if (Patcher.IsFontFixNeeded)
{
var fontProgress = new Progress<FontFixProgress>(p =>
Expand Down

0 comments on commit 9ca7dd5

Please sign in to comment.