Button to edit encoder advanced settings in CUERipper

This commit is contained in:
Grigory Chudov
2013-04-08 22:26:42 -04:00
parent 373097661f
commit d1e70fc7f3
5 changed files with 122 additions and 47 deletions

View File

@@ -14,9 +14,9 @@ namespace CUERipper
{
public partial class Options : Form
{
private CUEConfig config;
private object config;
public Options(CUEConfig config)
public Options(object config)
{
this.config = config;
this.InitializeComponent();
@@ -24,7 +24,7 @@ namespace CUERipper
private void Options_Load(object sender, EventArgs e)
{
this.propertyGrid1.SelectedObject = new CUERipperSettings(this.config);
this.propertyGrid1.SelectedObject = this.config;
}
}