fixed comment into code
This commit is contained in:
@@ -3,16 +3,16 @@ using CursorLang.Models;
|
||||
namespace CursorLang.Services;
|
||||
|
||||
/// <summary>
|
||||
/// Показывает подсказку с раскладкой у курсора.
|
||||
/// Shows the layout popup at the cursor.
|
||||
/// </summary>
|
||||
public interface ILayoutPopupService
|
||||
{
|
||||
/// <summary>Показывает подсказку и убирает её через заданное в настройках время.</summary>
|
||||
/// <summary>Shows the popup and takes it down after the time set in the settings.</summary>
|
||||
void Show(KeyboardLayout layout);
|
||||
|
||||
/// <summary>
|
||||
/// Показывает подсказку до явного вызова <see cref="Hide"/>: нужна там, где
|
||||
/// время показа задаёт не таймер, а действие пользователя.
|
||||
/// Shows the popup until <see cref="Hide"/> is called explicitly: needed where the
|
||||
/// show time is set by a user action rather than by a timer.
|
||||
/// </summary>
|
||||
void ShowUntilHidden(KeyboardLayout layout);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user