MCDO fixes
fix ipc probably add individual syncshells and shit don't show shared data from paused people change text fix reverting Use InputText/Combo hybrids for MCDO ACLs (#81) * Use InputText/Combo hybrids for MCDO ACLs * Hybrid combo factoring, filtering, ordering, caching fix selecting latest created data on creation rename close to direct pairs add toggle to keep nearby poses active constantly fix gpose hanging fix potential cancelaltion on updateshareddata
This commit is contained in:
@@ -65,6 +65,14 @@ internal partial class CharaDataHubUi
|
||||
_configService.Save();
|
||||
}
|
||||
_uiSharedService.DrawHelpText("This setting allows you to change the maximum distance in which poses will be shown. Set it to the maximum if you want to see all poses on the current map.");
|
||||
bool alwaysShow = _configService.Current.NearbyShowAlways;
|
||||
if (ImGui.Checkbox("Keep active outside Poses Nearby tab", ref alwaysShow))
|
||||
{
|
||||
_configService.Current.NearbyShowAlways = alwaysShow;
|
||||
_configService.Save();
|
||||
}
|
||||
_uiSharedService.DrawHelpText("This will allow Mare to continue the calculation of position of wisps etc. active outside of the 'Poses Nearby' tab." + UiSharedService.TooltipSeparator
|
||||
+ "Note: The wisps etc. will disappear during combat and performing.");
|
||||
});
|
||||
|
||||
if (!_uiSharedService.IsInGpose)
|
||||
|
||||
Reference in New Issue
Block a user