mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-02 10:48:29 +02:00
10 lines
282 B
Python
10 lines
282 B
Python
from source import event
|
|
import tkinter
|
|
|
|
|
|
@event.on("source.gui.install.Window.__init__")
|
|
def test_button(master):
|
|
tkinter.Button(master, text="test des plugins", command=lambda: print("test")).grid(
|
|
row=10, column=1, sticky="nsew"
|
|
)
|
|
print("I have been called")
|