Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pi-wrf/Runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class MainWindow(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
self.title('WRF Sim') #set the title of the main window
self.title('Pi-WRF') #set the title of the main window
screenwidth=self.winfo_screenwidth() #get the current screen width
screenheight=self.winfo_screenheight() #current height of screen
self.geometry('%dx%d'%(screenwidth,screenheight)) #makes the main window fullscreen
Expand Down