Skip to content

Commit

Permalink
ResetOnSpawn = false
Browse files Browse the repository at this point in the history
  • Loading branch information
Vorlias committed Dec 18, 2021
1 parent ccad202 commit 57714b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rbxts/zircon",
"version": "0.12.2-beta.0",
"version": "0.12.3-beta.0",
"description": "",
"main": "out/init.lua",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Client/BuiltInConsole/UI/DockedConsole.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ZirconConsoleComponent extends Roact.Component<DockedConsoleProps, DockedC
return (
<ThemeContext.Consumer
render={(theme) => (
<screengui DisplayOrder={10000} IgnoreGuiInset>
<screengui DisplayOrder={10000} ResetOnSpawn={false} IgnoreGuiInset>
<frame
Key="ZirconViewport"
Active={this.state.isFullView}
Expand Down
2 changes: 1 addition & 1 deletion src/Client/BuiltInConsole/UI/TopbarMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ZirconTopbarMenuComponent extends Roact.Component<TopbarProps, TopbarState
return (
<ThemeContext.Consumer
render={(theme) => (
<screengui DisplayOrder={10001} IgnoreGuiInset>
<screengui DisplayOrder={10001} ResetOnSpawn={false} IgnoreGuiInset>
<frame
Visible={this.state.isVisible}
Size={new UDim2(1, 0, 0, 40)}
Expand Down

0 comments on commit 57714b6

Please sign in to comment.