File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ const mapStateToProps = state => ({
188
188
infiniteClones : state . scratchGui . tw . runtimeOptions . maxClones === Infinity ,
189
189
removeFencing : ! state . scratchGui . tw . runtimeOptions . fencing ,
190
190
removeLimits : ! state . scratchGui . tw . runtimeOptions . miscLimits ,
191
+ oobRendering : ! state . scratchGui . tw . runtimeOptions . oobRendering ,
191
192
dangerousOptimizations : state . scratchGui . tw . runtimeOptions . dangerousOptimizations ,
192
193
warpTimer : state . scratchGui . tw . compilerOptions . warpTimer ,
193
194
customStageSize : state . scratchGui . customStageSize ,
Original file line number Diff line number Diff line change @@ -360,6 +360,8 @@ const TWStateManager = function (WrappedComponent) {
360
360
361
361
if ( urlParams . has ( 'livetests' ) || String ( window . location . href ) . startsWith ( `http://localhost:` ) ) {
362
362
// massive mega brained hack bc i cant figure out how to make a state
363
+ // ok so now i do know how to make it a state but because of the way
364
+ // this is used + pure laziness this wont be changing
363
365
this . props . vm . isLiveTest = true ;
364
366
}
365
367
You can’t perform that action at this time.
0 commit comments