GUI: Disabled possibilty to sort content in call stack tab, fixed #2637
This commit is contained in:
parent
b29aba22f6
commit
600b195457
|
@ -6,8 +6,8 @@ CallStackView::CallStackView(StdTable* parent) : StdTable(parent)
|
|||
{
|
||||
int charwidth = getCharWidth();
|
||||
|
||||
addColumnAt(8 * charwidth, tr("Thread ID"), true);
|
||||
addColumnAt(8 + charwidth * sizeof(dsint) * 2, tr("Address"), true); //address in the stack
|
||||
addColumnAt(8 * charwidth, tr("Thread ID"), false);
|
||||
addColumnAt(8 + charwidth * sizeof(dsint) * 2, tr("Address"), false); //address in the stack
|
||||
addColumnAt(8 + charwidth * sizeof(dsint) * 2, tr("To"), false); //return to
|
||||
addColumnAt(8 + charwidth * sizeof(dsint) * 2, tr("From"), false); //return from
|
||||
addColumnAt(8 + charwidth * sizeof(dsint) * 2, tr("Size"), false); //size
|
||||
|
|
Loading…
Reference in New Issue