mirror of
https://github.com/fadden/6502bench.git
synced 2025-07-24 22:25:06 +00:00
Progress on wireframe visualization
Added some more plumbing. Updated visualization set edit dialog, which now does word-wrapping correctly in the buttons. Added Alt+V as the hotkey for Create/Edit Visualization Set, which allows you to double-tap it to leap into the visualization editor. Experimented with Path drawing, which looks like it could do just what we need. Also, show the file size in KB in the code/data/junk breakdown at the bottom of the window. (Technically it's KiB, but that looked funny.)
This commit is contained in:
@@ -697,7 +697,7 @@ namespace SourceGen {
|
||||
float dataPerc = (mProject.ByteCounts.DataByteCount * 100.0f) / total;
|
||||
float junkPerc = (mProject.ByteCounts.JunkByteCount * 100.0f) / total;
|
||||
mMainWin.ByteCountText = string.Format(Res.Strings.STATUS_BYTE_COUNT_FMT,
|
||||
codePerc, dataPerc, junkPerc);
|
||||
total / 1024.0f, codePerc, dataPerc, junkPerc);
|
||||
}
|
||||
|
||||
#endregion Init and settings
|
||||
|
Reference in New Issue
Block a user