Windows Wizard: Fix 'Examine Config' directory

refs #11449
This commit is contained in:
Michael Friedrich 2016-04-19 16:09:27 +02:00 committed by Gunnar Beutner
parent 6653c51df5
commit 2d7bc74339
1 changed files with 4 additions and 4 deletions

View File

@ -35,8 +35,8 @@ namespace Icinga
Close();
}
private void btnOpenConfigDir_Click(object sender, EventArgs e) {
Process.Start("explorer.exe", Program.Icinga2DataDir + "\\etc\\icinga2");
}
}
private void btnOpenConfigDir_Click(object sender, EventArgs e) {
Process.Start("explorer.exe", Program.Icinga2DataDir);
}
}
}