diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-12 10:35:45 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-12 10:35:45 -0500 |
commit | 3683369500ae4244365ab2598c6fa2bf839970f0 (patch) | |
tree | efa0e7bbdb4c53553658b6ee33c588f6cf200b1b /src/citra_qt/debugger/callstack.h | |
parent | f3a7b66267a243c9e1a8bcd37f39389e41703fef (diff) | |
parent | d670b7e52261c6cb4b53fb7f457f8ab4614ebc30 (diff) |
Merge pull request #461 from archshift/callstack
Qt Callstack: Clear the callstack every time it's updated
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: private: Ui::CallStack ui; QStandardItemModel* callstack_model; + + /// Clears the callstack widget while keeping the column widths the same + void Clear(); }; |