mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
fix: close gamepad overlay when setting is disabled
This commit is contained in:
parent
bf72ad589d
commit
b7cbaacac6
5 changed files with 16 additions and 8 deletions
|
|
@ -232,7 +232,7 @@ namespace Dalamud.Interface.Internal
|
|||
/// <summary>
|
||||
/// Opens the <see cref="IMEWindow"/>.
|
||||
/// </summary>
|
||||
public void OpenIMEWindow() => this.imeWindow.IsOpen = true;
|
||||
public void OpenImeWindow() => this.imeWindow.IsOpen = true;
|
||||
|
||||
/// <summary>
|
||||
/// Opens the <see cref="ConsoleWindow"/>.
|
||||
|
|
@ -263,7 +263,7 @@ namespace Dalamud.Interface.Internal
|
|||
/// Opens the <see cref="StyleEditorWindow"/>.
|
||||
/// </summary>
|
||||
public void OpenStyleEditor() => this.styleEditorWindow.IsOpen = true;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Opens the <see cref="ProfilerWindow"/>.
|
||||
/// </summary>
|
||||
|
|
@ -276,7 +276,12 @@ namespace Dalamud.Interface.Internal
|
|||
/// <summary>
|
||||
/// Closes the <see cref="IMEWindow"/>.
|
||||
/// </summary>
|
||||
public void CloseIMEWindow() => this.imeWindow.IsOpen = false;
|
||||
public void CloseImeWindow() => this.imeWindow.IsOpen = false;
|
||||
|
||||
/// <summary>
|
||||
/// Closes the <see cref="GamepadModeNotifierWindow"/>.
|
||||
/// </summary>
|
||||
public void CloseGamepadModeNotifierWindow() => this.gamepadModeNotifierWindow.IsOpen = false;
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue