SVN commit 1067888 by smankowski: First color for graph is now bleue instead of red M +2 -1 skgtablewithgraph.cpp --- trunk/extragear/office/skrooge/skgbasegui/skgtablewithgraph.cpp #1067887:1067888 @@ -816,7 +816,7 @@ double val=tableItem->data ( DATA_VALUE ).toDouble(); QString valstring=tableItem->text(); - int color_h=359*x/nbRows; + int color_h=(240+359*x/nbRows)%360; //First color is blue to be compliant with min (red) and max (green) int color_s=255-155* ( nbColumns-1-j ) /nbColumns; int color_v=255-155* ( nbColumns-1-j ) /nbColumns; int color_a=200; @@ -1389,6 +1389,7 @@ void SKGTableWithGraph::setGraphTypeSelectorVisible ( bool iVisible ) const { ui.kGraphTypeFrm->setVisible ( iVisible ); + if(actShowToolBar) actShowToolBar->setVisible ( iVisible ); } bool SKGTableWithGraph::isGraphTypeSelectorVisible() const