diff options
Diffstat (limited to 'gui/designwidget.h')
-rw-r--r-- | gui/designwidget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/designwidget.h b/gui/designwidget.h index fec0d069..a11ed062 100644 --- a/gui/designwidget.h +++ b/gui/designwidget.h @@ -64,7 +64,7 @@ class DesignWidget : public QWidget void updateHighlightGroup(QList<QTreeWidgetItem *> item, int group);
Q_SIGNALS:
void info(std::string text);
- void selected(std::vector<DecalXY> decal);
+ void selected(std::vector<DecalXY> decal, bool keep);
void highlight(std::vector<DecalXY> decal, int group);
private Q_SLOTS:
@@ -75,8 +75,8 @@ class DesignWidget : public QWidget public Q_SLOTS:
void newContext(Context *ctx);
void updateTree();
- void onClickedBel(BelId bel);
- void onClickedWire(WireId wire);
+ void onClickedBel(BelId bel, bool keep);
+ void onClickedWire(WireId wire, bool keep);
private:
Context *ctx;
|