diff options
| author | Ryan Snyder <ryan@vector35.com> | 2024-07-10 12:02:05 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2024-07-10 12:11:12 -0400 |
| commit | 42b3b1c9e3df2d1f7aaa189b41125f00fa547bb4 (patch) | |
| tree | 0e2a88ff70e3b709a12292b5f2e3f0a05dfe69e8 | |
| parent | 3cec4148bbe859f9032dc11b4a0aaab5e9534d7e (diff) | |
ui: fix il preview not updating immediately when cycling
| -rw-r--r-- | ui/xreflist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/xreflist.h b/ui/xreflist.h index 9e597144..2c875c97 100644 --- a/ui/xreflist.h +++ b/ui/xreflist.h @@ -328,7 +328,7 @@ class BINARYNINJAUIAPI CrossReferenceTreeModel : public QAbstractItemModel ViewFrame* getView() const { return m_view; } virtual void updateMaxUIItems(size_t value) { m_maxUIItems = value; } size_t getMaxUIItems() const { return m_maxUIItems; } - void setGraphType(BNFunctionGraphType type) { m_graphType = type; } + void setGraphType(BNFunctionGraphType type); void requestAdvancedAnalysis(); Q_SIGNALS: @@ -393,7 +393,7 @@ class BINARYNINJAUIAPI CrossReferenceTableModel : public QAbstractTableModel ViewFrame* getView() const { return m_view; } virtual void updateMaxUIItems(size_t value) { m_maxUIItems = value; } size_t getMaxUIItems() const { return m_maxUIItems; } - void setGraphType(BNFunctionGraphType type) { m_graphType = type; } + void setGraphType(BNFunctionGraphType type); void requestAdvancedAnalysis(); Q_SIGNALS: void needRepaint(); |
