diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-06-13 17:53:40 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2022-06-14 21:05:39 -0400 |
| commit | e02721a6012a3ac92694eb60b0ad71a1db74d0ba (patch) | |
| tree | 89283f6fe725ac2b7768119809fa5d9887b7a464 /ui/flowgraphwidget.h | |
| parent | 5828dbeb875826285f7334519611e7578a745cd8 (diff) | |
Fix flow graph not being able to copy in some cases
Diffstat (limited to 'ui/flowgraphwidget.h')
| -rw-r--r-- | ui/flowgraphwidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/flowgraphwidget.h b/ui/flowgraphwidget.h index 869c3bf6..46c484c3 100644 --- a/ui/flowgraphwidget.h +++ b/ui/flowgraphwidget.h @@ -234,13 +234,15 @@ class BINARYNINJAUIAPI FlowGraphWidget : void disableZoom(); virtual void sendWheelEvent(QWheelEvent* event) override; + virtual bool canCut() override; + virtual bool canCopy() override; + virtual bool canPaste() override; virtual void cut() override; virtual void copy(TransformRef xform) override; virtual void paste(TransformRef xform) override; virtual bool canAssemble() override; virtual bool canCompile() override; - virtual bool canPaste() override; virtual void closing() override; |
