From 1526772a050df09da7272b201b1cffbefd9daab3 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Mon, 9 Jan 2023 11:36:37 -0500 Subject: [PATCH] Implemented Do() Oops --- tomo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tomo.go b/tomo.go index fa93222..50ef91c 100644 --- a/tomo.go +++ b/tomo.go @@ -160,7 +160,7 @@ func Stop () { // Do executes the specified callback within the main thread as soon as // possible. This function can be safely called from other threads. func Do (callback func ()) { - + backend.Do(callback) } // NewWindow creates a new window using the current backend, and returns it as a