Skip to content

Commit 98dd858

Browse files
committed
#487 fixing opacity and line threshold
1 parent 6e9cec9 commit 98dd858

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

webapp/components/instantiation/NetPyNEInstantiated.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const SELECTION_COLOR = {
1313
r: 0, g: 0.8, b: 0.8, a: 1,
1414
};
1515
const DEFAULT_COLOR = {
16-
g: 0.50, b: 0.60, r: 1, a: 0.80,
16+
g: 0.50, b: 0.60, r: 1, a: 1,
1717
};
1818

1919
const styles = () => ({
@@ -141,6 +141,7 @@ class NetPyNEInstantiated extends React.Component {
141141
: (this.props.theme === THEMES.LIGHT ? canvasBgLight : bgRegular)
142142
}
143143
onSelection={this.onSelection}
144+
linesThreshold="5000"
144145
/>
145146
</div>
146147
);

webapp/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const MODEL_STATE = {
2121
};
2222

2323
export const DEFAULT_COLOR = {
24-
g: 0.50, b: 0.60, r: 1, a: 0.80,
24+
g: 0.50, b: 0.60, r: 1, a: 1,
2525
};
2626

2727
export const NETPYNE_COMMANDS = {

0 commit comments

Comments
 (0)