Skip to content

Commit 36003e3

Browse files
tarterpmrexodia
authored andcommitted
GUI: sortable memory map headers for type and protections
1 parent 062dee2 commit 36003e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/gui/Src/Gui/MemoryMapView.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ MemoryMapView::MemoryMapView(StdTable* parent)
2727
addColumnAt(8 + charwidth * 2 * sizeof(duint), tr("Size"), false, tr("Size")); //size
2828
addColumnAt(8 + charwidth * 32, tr("Info"), false, tr("Page Information")); //page information
2929
addColumnAt(8 + charwidth * 28, tr("Content"), false, tr("Content of section")); //content of section
30-
addColumnAt(8 + charwidth * 5, tr("Type"), false, tr("Allocation Type")); //allocation type
31-
addColumnAt(8 + charwidth * 11, tr("Protection"), false, tr("Current Protection")); //current protection
32-
addColumnAt(8 + charwidth * 8, tr("Initial"), false, tr("Allocation Protection")); //allocation protection
30+
addColumnAt(8 + charwidth * 5, tr("Type"), true, tr("Allocation Type")); //allocation type
31+
addColumnAt(8 + charwidth * 11, tr("Protection"), true, tr("Current Protection")); //current protection
32+
addColumnAt(8 + charwidth * 8, tr("Initial"), true, tr("Allocation Protection")); //allocation protection
3333
loadColumnFromConfig("MemoryMap");
3434

3535
connect(Bridge::getBridge(), SIGNAL(updateMemory()), this, SLOT(refreshMap()));

0 commit comments

Comments
 (0)