fix pause tooltip

This commit is contained in:
Stanley Dimant
2022-07-17 22:37:36 +02:00
parent 940335524c
commit df53bd9559
2 changed files with 2 additions and 2 deletions

View File

@@ -251,7 +251,7 @@ namespace MareSynchronos.UI
{
_ = _apiController.SendPairedClientPauseChange(entry.OtherUID, !entry.IsPaused);
}
UiShared.AttachToolTip(entry.IsSynced
UiShared.AttachToolTip(entry.IsPaused
? "Pause pairing with " + entry.OtherUID
: "Resume pairing with " + entry.OtherUID);
}