mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Button to edit encoder advanced settings in CUERipper
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user