showMessageSafe is now an alias to showMessage for backwards compatibility. Both use the same safe implementation that avoids QueueUpdateDraw deadlocks.
(message string)
| 35 | // showMessageSafe is now an alias to showMessage for backwards compatibility. |
| 36 | // Both use the same safe implementation that avoids QueueUpdateDraw deadlocks. |
| 37 | func (a *App) showMessageSafe(message string) { |
| 38 | a.showMessage(message) |
| 39 | } |
| 40 | |
| 41 | // showConfirmationDialog displays a confirmation dialog with Yes/No options. |
| 42 | // DEPRECATED: Use CreateConfirmDialog instead for consistency. |
no test coverage detected