ShowMessage displays a modal message, preserving focus when dismissed. This now uses a safe implementation that avoids QueueUpdateDraw deadlocks.
(message string)
| 595 | // ShowMessage displays a modal message, preserving focus when dismissed. |
| 596 | // This now uses a safe implementation that avoids QueueUpdateDraw deadlocks. |
| 597 | func (a *App) ShowMessage(message string) { |
| 598 | a.showMessage(message) |
| 599 | } |
| 600 | |
| 601 | // ShowMessageSafe is now an alias to ShowMessage for backwards compatibility. |
| 602 | // Both use the same safe implementation that avoids QueueUpdateDraw deadlocks. |
nothing calls this directly
no test coverage detected