From 42b3b1c9e3df2d1f7aaa189b41125f00fa547bb4 Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Wed, 10 Jul 2024 12:02:05 -0400 Subject: ui: fix il preview not updating immediately when cycling --- ui/xreflist.h | 4 ++-- 1 file 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(); -- cgit v1.3.1