From 07a6e285676fce7d6944d855c1f9924075f589e3 Mon Sep 17 00:00:00 2001
From: Anonymus Raccoon
Date: Tue, 18 Feb 2020 00:55:32 +0100
Subject: [PATCH] Resizing the table
---
sources/Debugger/MemoryViewer.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/sources/Debugger/MemoryViewer.cpp b/sources/Debugger/MemoryViewer.cpp
index 2b2d47a..b84e53d 100644
--- a/sources/Debugger/MemoryViewer.cpp
+++ b/sources/Debugger/MemoryViewer.cpp
@@ -52,6 +52,7 @@ namespace ComSquare::Debugger
this->_ui.setupUi(this);
this->_ui.tableView->setModel(&this->_model);
+ this->_ui.tableView->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
this->show();
}
}
\ No newline at end of file