SVN commit 856763 by fenton: Fix Legend appearing after cancel of dialog. M +1 -0 plotitem.cpp --- branches/work/kst/portto4/kst/src/libkstapp/plotitem.cpp #856762:856763 @@ -1754,6 +1754,7 @@ LegendItem* PlotItem::legend() { if (!_legend) { _legend = new LegendItem(this); + _legend->setVisible(false); } return _legend; }