Compare commits

..

No commits in common. "21b4f9091a9a2e7b2d7acc1c92d2cd80064bdb48" and "6fdd2fba21bc84064fea23df84418869f9317dfd" have entirely different histories.

3 changed files with 1 additions and 26 deletions

View File

@ -27,12 +27,6 @@ namespace BITKit.UX
{
RegisterCallback<AttachToPanelEvent>(OnAttachToPanel);
RegisterCallback<DetachFromPanelEvent>(OnDetachFromPanel);
RegisterCallback<GeometryChangedEvent>(OnGeometryChanged);
}
private void OnGeometryChanged(GeometryChangedEvent evt)
{
Rebuild();
}
public string TabPath

View File

@ -1,6 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets.Kcp;
using SkiaSharp;
using UnityEngine;
using UnityEngine.UIElements;

View File

@ -445,23 +445,3 @@ Foldout Toggle Label {
background-color: rgb(58, 58, 58);
color: rgb(255, 255, 255);
}
Button.clear {
background-color: rgba(0, 0, 0, 0);
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
padding-top: 0;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0;
border-left-color: rgba(0, 0, 0, 0);
border-right-color: rgba(0, 0, 0, 0);
border-top-color: rgba(0, 0, 0, 0);
border-bottom-color: rgba(0, 0, 0, 0);
}