File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ const IDEView = () => {
80
80
81
81
const [ consoleSize , setConsoleSize ] = useState ( 150 ) ;
82
82
const [ sidebarSize , setSidebarSize ] = useState ( 160 ) ;
83
- const [ isOverlayVisible , setIsOverlayVisible ] = useState ( true ) ;
83
+ // const [isOverlayVisible, setIsOverlayVisible] = useState(true);
84
84
85
85
const cmRef = useRef ( { } ) ;
86
86
@@ -155,11 +155,11 @@ const IDEView = () => {
155
155
split = "vertical"
156
156
defaultSize = "50%"
157
157
onChange = { ( ) => {
158
- setIsOverlayVisible ( true ) ;
158
+ // setIsOverlayVisible(true);
159
159
} }
160
160
onDragFinished = { ( ) => {
161
161
// overlayRef.current.style.display = 'none';
162
- setIsOverlayVisible ( false ) ;
162
+ // setIsOverlayVisible(false);
163
163
} }
164
164
resizerStyle = { {
165
165
borderLeftWidth : '2px' ,
@@ -193,7 +193,7 @@ const IDEView = () => {
193
193
< div className = "preview-frame__content" >
194
194
< div
195
195
className = "preview-frame-overlay"
196
- style = { { display : isOverlayVisible ? 'block' : 'none' } }
196
+ // style={{ display: isOverlayVisible ? 'block' : 'none' }}
197
197
/>
198
198
< div >
199
199
{ ( ( preferences . textOutput || preferences . gridOutput ) &&
You can’t perform that action at this time.
0 commit comments