deselected cells are smaller

This commit is contained in:
Colin Megill
2018-02-27 11:32:50 -08:00
parent 070f505076
commit 20a2792cfe
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,3 +1,5 @@
/* rc slider https://www.npmjs.com/package/rc-slider */
import React from 'react';
import _ from "lodash";
import { connect } from "react-redux";
+1 -1
View File
@@ -87,7 +87,7 @@ export const drawGraph = (
context.arc(
globals.graphXScale(p[1]), /* x */
globals.graphYScale(p[2]), /* y */
2, /* r */
_currentCellSelectionMap[p[0]]["__selected__"] ? 3 : 1.5, /* r */
0, /* sAngle */
2 * Math.PI /* eAngle */
);