fix:收纳模式下进入PPT自动进入批注异常

This commit is contained in:
2025-09-13 22:53:31 +08:00
parent 53a9e901ec
commit 0f7b9524f9
+17
View File
@@ -698,7 +698,24 @@ namespace Ink_Canvas
if (Settings.PowerPointSettings.IsShowCanvasAtNewSlideShow &&
!Settings.Automation.IsAutoFoldInPPTSlideShow)
{
BtnColorRed_Click(null, null);
Dispatcher.BeginInvoke(new Action(() =>
{
try
{
if (inkCanvas.EditingMode == InkCanvasEditingMode.Ink)
{
UpdateCurrentToolMode("pen");
SetFloatingBarHighlightPosition("pen");
}
}
catch (Exception ex)
{
LogHelper.WriteLogToFile($"PPT进入批注模式后同步浮动栏高光状态失败: {ex.Message}", LogHelper.LogType.Error);
}
}), DispatcherPriority.Loaded);
}
isEnteredSlideShowEndEvent = false;