mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-26 06:49:19 +00:00
Fix Actions menu crash
If you open the Actions menu when nothing is selected, the "can I create a local variable table here" method crashes with a bad index reference. Issue #48.
This commit is contained in:
parent
7ddde3aad7
commit
6c102919f5
@ -1650,8 +1650,11 @@ namespace SourceGen {
|
||||
}
|
||||
|
||||
public bool CanCreateLocalVariableTable() {
|
||||
int selIndex = mMainWin.CodeListView_GetFirstSelectedIndex();
|
||||
if (SelectionAnalysis.mNumItemsSelected != 1) {
|
||||
return false;
|
||||
}
|
||||
// Only allow on code lines. This is somewhat arbitrary; data would work fine.
|
||||
int selIndex = mMainWin.CodeListView_GetFirstSelectedIndex();
|
||||
if (CodeLineList[selIndex].LineType != LineListGen.Line.Type.Code) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user