save tracer column widths.
This commit is contained in:
parent
f344cbca07
commit
26997dd32a
|
@ -1405,6 +1405,7 @@
|
|||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="tools\GameShark.resx">
|
||||
<DependentUpon>GameShark.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="tools\GBA\GBAGPUView.resx">
|
||||
<DependentUpon>GBAGPUView.cs</DependentUpon>
|
||||
|
|
|
@ -20,6 +20,19 @@ namespace BizHawk.Client.EmuHawk
|
|||
[ConfigPersist]
|
||||
private int MaxLines { get; set; }
|
||||
|
||||
[ConfigPersist]
|
||||
private int DisasmColumnWidth {
|
||||
get { return this.Disasm.Width; }
|
||||
set { this.Disasm.Width = value; }
|
||||
}
|
||||
|
||||
[ConfigPersist]
|
||||
private int RegistersColumnWidth
|
||||
{
|
||||
get { return this.Registers.Width; }
|
||||
set { this.Registers.Width = value; }
|
||||
}
|
||||
|
||||
private readonly List<TraceInfo> _instructions = new List<TraceInfo>();
|
||||
|
||||
private FileInfo _logFile;
|
||||
|
|
Loading…
Reference in New Issue