Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
Remove outline around component info button in Worker Inspector (#1468)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Brynes authored Aug 27, 2020
1 parent d9d4f8b commit d2a5246
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Migrated launch configurations to latest game templates. [#1457](https://github.com/spatialos/gdk-for-unity/pull/1457)
- Multithreaded component serialization through `SystemBase` jobs. [#1454](https://github.com/spatialos/gdk-for-unity/pull/1454)
- Upgrade Unity Burst to 1.3.5. [#1467](https://github.com/spatialos/gdk-for-unity/pull/1467)
- Removed outline and background around component info button in the Worker Inspector. [#1468](https://github.com/spatialos/gdk-for-unity/pull/1468)

### Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void SetNewWorld(World newWorld)
fullData.Clear();
FilteredData.Clear();

if (query != default)
if (query != default && world.IsCreated)
{
query.Dispose();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@
align-self: center;
margin-right: 10px;
margin-left: 10px;
border-width: 0;
background-color: rgba(0, 0, 0, 0);
}

.component-foldout .component-info-container {
Expand Down

0 comments on commit d2a5246

Please sign in to comment.