diff --git a/ui/driver.go b/ui/driver.go index be2f019f4e..ac683a6db2 100644 --- a/ui/driver.go +++ b/ui/driver.go @@ -3,8 +3,6 @@ package ui // Driver defines an abstract concept of a Fyne render driver. // Any implementation must provide at least these methods. type Driver interface { - Run() // Start the driver - Quit() // Cleanly exit the driver CreateWindow(string) Window // Create a new UI Window AllWindows() []Window // Get a slice containing all app windows }