Improve Linux application events and refactor app method receivers

This commit includes the addition of common events for the Linux platform. Refactored and standardized the method receivers for the application from 'm' to 'l'. Also, the application startup events in the window example have been updated according to the new naming scheme.
This commit is contained in:
Lea Anthony
2024-03-06 11:48:26 -06:00
committed by Travis McLane
parent 6b0daf3da9
commit 84e1bb4d9b
6 changed files with 67 additions and 50 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
package application
func (a *linuxApp) dispatchOnMainThread(id uint) {
func (l *linuxApp) dispatchOnMainThread(id uint) {
dispatchOnMainThread(id)
}