Force SHA1 hashing on updated hash files
This commit is contained in:
@@ -818,11 +818,19 @@ public class SettingsUi : WindowMediatorSubscriberBase
|
||||
$"D = Decompressing download");
|
||||
if (!_configService.Current.ShowTransferWindow) ImGui.BeginDisabled();
|
||||
ImGui.Indent();
|
||||
|
||||
bool editTransferWindowPosition = _uiShared.EditTrackerPosition;
|
||||
if (ImGui.Checkbox("Edit Transfer Window position", ref editTransferWindowPosition))
|
||||
{
|
||||
_uiShared.EditTrackerPosition = editTransferWindowPosition;
|
||||
}
|
||||
bool showPlayerLinesTransferWindow = _configService.Current.ShowPlayerLinesTransferWindow;
|
||||
|
||||
if (ImGui.Checkbox("Toggle the Player Lines in the Transfer Window", ref showPlayerLinesTransferWindow))
|
||||
{
|
||||
_configService.Current.ShowPlayerLinesTransferWindow = showPlayerLinesTransferWindow;
|
||||
_configService.Save();
|
||||
}
|
||||
|
||||
ImGui.Unindent();
|
||||
if (!_configService.Current.ShowTransferWindow) ImGui.EndDisabled();
|
||||
|
||||
Reference in New Issue
Block a user