ShowMessageSafe is now an alias to ShowMessage for backwards compatibility. Both use the same safe implementation that avoids QueueUpdateDraw deadlocks.
(message string)
| 601 | // ShowMessageSafe is now an alias to ShowMessage for backwards compatibility. |
| 602 | // Both use the same safe implementation that avoids QueueUpdateDraw deadlocks. |
| 603 | func (a *App) ShowMessageSafe(message string) { |
| 604 | a.showMessage(message) |
| 605 | } |
| 606 | |
| 607 | // ClearAPICache clears cached API responses. |
| 608 | func (a *App) ClearAPICache() { |
no test coverage detected