From 5d96fc96940819c817b1876c7877c17ab1db3165 Mon Sep 17 00:00:00 2001 From: Vanellope Date: Sat, 23 Mar 2019 15:20:19 +0900 Subject: [PATCH] Fix a bug regarding highlighting the words in Graph --- src/widgets/DisassemblerGraphView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/DisassemblerGraphView.cpp b/src/widgets/DisassemblerGraphView.cpp index cc033fc3..d8d5bc14 100644 --- a/src/widgets/DisassemblerGraphView.cpp +++ b/src/widgets/DisassemblerGraphView.cpp @@ -855,6 +855,7 @@ void DisassemblerGraphView::blockClicked(GraphView::GraphBlock &block, QMouseEve if (event->button() == Qt::RightButton) { mMenu->exec(event->globalPos()); } + viewport()->update(); } void DisassemblerGraphView::blockDoubleClicked(GraphView::GraphBlock &block, QMouseEvent *event,