UI icon refactoring stuff
minor refactoring add mouseover in main ui fix icon font issues fix uploads/downloads icon alignment fix code dupe use fixed width icon handle, update deps Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
This commit is contained in:
@@ -79,11 +79,11 @@ public class DalamudUtilService : IHostedService, IMediatorSubscriber
|
||||
.Where(x => x.RowId != 0 && !(x.RowId >= 500 && (x.UIForeground & 0xFFFFFF00) == 0))
|
||||
.ToDictionary(x => (int)x.RowId);
|
||||
});
|
||||
mediator.Subscribe<TargetPairMessage>(this, async (msg) =>
|
||||
mediator.Subscribe<TargetPairMessage>(this, (msg) =>
|
||||
{
|
||||
if (clientState.IsPvP) return;
|
||||
var ident = msg.Pair.GetPlayerNameHash();
|
||||
await RunOnFrameworkThread(() =>
|
||||
_ = RunOnFrameworkThread(() =>
|
||||
{
|
||||
var addr = GetPlayerCharacterFromCachedTableByIdent(ident);
|
||||
var pc = _clientState.LocalPlayer!;
|
||||
|
||||
Reference in New Issue
Block a user