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

Commit d2a5246

Browse files
author
Jamie Brynes
authored
Remove outline around component info button in Worker Inspector (#1468)
1 parent d9d4f8b commit d2a5246

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Migrated launch configurations to latest game templates. [#1457](https://github.com/spatialos/gdk-for-unity/pull/1457)
1919
- Multithreaded component serialization through `SystemBase` jobs. [#1454](https://github.com/spatialos/gdk-for-unity/pull/1454)
2020
- Upgrade Unity Burst to 1.3.5. [#1467](https://github.com/spatialos/gdk-for-unity/pull/1467)
21+
- Removed outline and background around component info button in the Worker Inspector. [#1468](https://github.com/spatialos/gdk-for-unity/pull/1468)
2122

2223
### Fixed
2324

workers/unity/Packages/io.improbable.gdk.debug/WorkerInspector/EntityListData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void SetNewWorld(World newWorld)
4242
fullData.Clear();
4343
FilteredData.Clear();
4444

45-
if (query != default)
45+
if (query != default && world.IsCreated)
4646
{
4747
query.Dispose();
4848
}

workers/unity/Packages/io.improbable.gdk.debug/WorkerInspector/Templates/WorkerInspectorWindow.uss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@
9191
align-self: center;
9292
margin-right: 10px;
9393
margin-left: 10px;
94+
border-width: 0;
95+
background-color: rgba(0, 0, 0, 0);
9496
}
9597

9698
.component-foldout .component-info-container {

0 commit comments

Comments
 (0)