diff options
| author | 2015-01-10 22:39:00 -0800 | |
|---|---|---|
| committer | 2015-01-11 21:47:28 -0800 | |
| commit | d670b7e52261c6cb4b53fb7f457f8ab4614ebc30 (patch) | |
| tree | db543f0228cc9870c0c4eec3fa54ca61257bd9eb /src/citra_qt/debugger/callstack.h | |
| parent | Merge pull request #468 from lioncash/adc (diff) | |
| download | yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.gz yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.tar.xz yuzu-d670b7e52261c6cb4b53fb7f457f8ab4614ebc30.zip | |
Qt Callstack: Clear the callstack every time it's updated
This fixes the issue that old members of the callstack would stick around, even when the callstack shortened.
Diffstat (limited to 'src/citra_qt/debugger/callstack.h')
| -rw-r--r-- | src/citra_qt/debugger/callstack.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/callstack.h b/src/citra_qt/debugger/callstack.h index fb390f5c3..1a9b6dc81 100644 --- a/src/citra_qt/debugger/callstack.h +++ b/src/citra_qt/debugger/callstack.h | |||
| @@ -21,4 +21,7 @@ public slots: | |||
| 21 | private: | 21 | private: |
| 22 | Ui::CallStack ui; | 22 | Ui::CallStack ui; |
| 23 | QStandardItemModel* callstack_model; | 23 | QStandardItemModel* callstack_model; |
| 24 | |||
| 25 | /// Clears the callstack widget while keeping the column widths the same | ||
| 26 | void Clear(); | ||
| 24 | }; | 27 | }; |