Skip to content

Commit 1154ecf

Browse files
committed
fix: Move LootLocker to window menu
1 parent 327c7aa commit 1154ecf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Runtime/Editor/Editor UI/LootLockerAdminExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public partial class LootLockerAdminExtension : EditorWindow
102102
#endregion
103103

104104
#region Window Management
105-
[MenuItem("Window/LootLocker/Manage", false, 1)]
105+
[MenuItem("Window/LootLocker/Manage", false, 100)]
106106
public static void Run()
107107
{
108108
LootLockerAdminExtension wnd = GetWindow<LootLockerAdminExtension>();

Runtime/Editor/LogViewer/LootLockerLogViewerWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class LootLockerLogViewerWindow : EditorWindow
1212
private VisualTreeAsset m_VisualTreeAsset;
1313
private LogViewerUI logViewerUI;
1414

15-
[MenuItem("LootLocker/Log Viewer", false, 50)]
15+
[MenuItem("Window/LootLocker/Log Viewer")]
1616
public static void ShowWindow()
1717
{
1818
var wnd = GetWindow<LootLockerLogViewerWindow>();

Runtime/Editor/LogViewer/LootLockerLogViewerWindow.uss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@
154154
}
155155

156156
.log-doc-icon {
157-
cursor: pointer;
157+
cursor: link;
158158
color: #4da3ff;
159159
font-size: 14px;
160160
margin-left: 6px;
161-
unity-font-style: bold;
161+
-unity-font-style: bold;
162162
transition: color 0.1s;
163163
}
164164
.log-doc-icon:hover {

0 commit comments

Comments
 (0)