Add tabs and a setting button in the installer

This commit is contained in:
Aireil 2021-01-02 06:29:04 +01:00
parent 64e78a297d
commit 9ad67b617b
2 changed files with 65 additions and 47 deletions

View file

@ -488,6 +488,11 @@ namespace Dalamud {
this.isImguiDrawChangelogWindow = true;
}
internal void OpenSettings() {
this.settingsWindow = new DalamudSettingsWindow(this);
this.isImguiDrawSettingsWindow ^= true;
}
private void ReplaceExceptionHandler() {
var semd = this.SigScanner.ScanText(
"40 55 53 56 48 8D AC 24 ?? ?? ?? ?? B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 48 8B 05 ?? ?? ?? ?? 48 33 C4 48 89 85 ?? ?? ?? ?? 48 83 3D ?? ?? ?? ?? ??");
@ -756,8 +761,7 @@ namespace Dalamud {
private void OnOpenSettingsCommand(string command, string arguments)
{
this.settingsWindow = new DalamudSettingsWindow(this);
this.isImguiDrawSettingsWindow = true;
OpenSettings();
}
private void OnBugReportCommand(string command, string arguments) {