Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions model/plotWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,12 @@ namespace minsky
void onMouseLeave() override {valueString="";}
/// @}

/// @{ Disambiguate EventInterface vs Item — classdesc resolves to
/// EventInterface's empty stubs otherwise (tickets:#1918)
void moveTo(float x, float y) override {Item::moveTo(x,y);}
std::vector<float> position() const override {return {Item::x(), Item::y()};}
/// @}

/// export the plotted data as a CSV file
// implemented as a single argument function here for exposure to TCL
void exportAsCSV(const string& filename) {ecolab::Plot::exportAsCSV(filename);}
Expand Down
Loading